powerups.sprite 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068
  1. (supertux-sprite
  2. (action
  3. (name "grow-right")
  4. (images "../../objects/bonus_block/invisible.png"))
  5. (action
  6. (name "grow-left")
  7. (mirror-action "grow-right"))
  8. ; Fire Tux
  9. (action
  10. (name "fire-walk-right")
  11. (fps 15)
  12. (hitbox 16 15 32 64)
  13. (images "fire/hat/walk-0.png"
  14. "fire/hat/walk-1.png"
  15. "fire/hat/walk-0.png"
  16. "fire/hat/walk-3.png"))
  17. (action
  18. (name "fire-walk-left")
  19. (fps 15)
  20. (hitbox 16 15 32 64)
  21. (mirror-action "fire-walk-right"))
  22. (action
  23. (name "fire-stand-right")
  24. (hitbox 16 15 32 64)
  25. (images "fire/hat/stand.png"))
  26. (action
  27. (name "fire-stand-left")
  28. (hitbox 16 15 32 64)
  29. (mirror-action "fire-stand-right"))
  30. (action
  31. (name "fire-walljump-right")
  32. (hitbox 24 14 32 64)
  33. (images "fire/hat/fire-walljump.png"))
  34. (action
  35. (name "fire-walljump-left")
  36. (hitbox 8 14 32 64)
  37. (mirror-action "fire-walljump-right"))
  38. (action
  39. (name "fire-jump-right")
  40. (hitbox 16 15 32 64)
  41. (images "fire/hat/stand.png"))
  42. (action
  43. (name "fire-jump-left")
  44. (hitbox 16 15 32 64)
  45. (mirror-action "fire-jump-right"))
  46. (action
  47. (name "fire-fall-right")
  48. (hitbox 16 15 32 64)
  49. (images "fire/hat/stand.png"))
  50. (action
  51. (name "fire-fall-left")
  52. (hitbox 16 15 32 64)
  53. (mirror-action "fire-jump-right"))
  54. (action
  55. (name "fire-skid-right")
  56. (hitbox 16 15 32 64)
  57. (images "fire/hat/skid.png"))
  58. (action
  59. (name "fire-skid-left")
  60. (hitbox 16 15 32 64)
  61. (mirror-action "fire-skid-right"))
  62. (action
  63. (name "fire-kick-right")
  64. (hitbox 16 15 32 64)
  65. (images "fire/hat/stand.png"))
  66. (action
  67. (name "fire-kick-left")
  68. (hitbox 16 15 32 64)
  69. (mirror-action "fire-kick-right"))
  70. (action
  71. (name "fire-idle-right")
  72. (hitbox 16 15 32 64)
  73. (images "fire/hat/stand.png"))
  74. (action
  75. (name "fire-idle-left")
  76. (hitbox 16 15 32 64)
  77. (mirror-action "fire-idle-right"))
  78. (action
  79. (name "fire-climbing-right")
  80. (hitbox 9 14 25 64)
  81. (fps 15.0)
  82. (images "fire/hat/climb-0.png"
  83. "fire/hat/climb-0.png"
  84. "fire/hat/climb-0.png"
  85. "fire/hat/climb-0.png"
  86. "fire/hat/climb-1.png"
  87. "fire/hat/climb-1.png"
  88. "fire/hat/climb-1.png"
  89. "fire/hat/climb-1.png"))
  90. (action
  91. (name "fire-climbing-left")
  92. (hitbox 9 14 25 64)
  93. (fps 15.0)
  94. (mirror-action "fire-climbing-right"))
  95. (action
  96. (name "fire-duck-right")
  97. (hitbox 16 45 32 32)
  98. (images "fire/hat/duck.png"))
  99. (action
  100. (name "fire-duck-left")
  101. (hitbox 16 45 32 32)
  102. (mirror-action "fire-duck-right"))
  103. (action
  104. (name "fire-backflip-right")
  105. (hitbox 16 37 32 32)
  106. (images "fire/hat/backflip.png"))
  107. (action
  108. (name "fire-backflip-left")
  109. (hitbox 16 37 32 32)
  110. (mirror-action "fire-backflip-right"))
  111. (action
  112. (name "fire-buttjump-right")
  113. (hitbox 16 15 32 64)
  114. (fps 20.0)
  115. (loops 1)
  116. (images "fire/hat/buttjump-0.png"
  117. "fire/hat/buttjump-1.png"
  118. "fire/hat/buttjump-2.png"
  119. "fire/hat/buttjump-3.png"
  120. "fire/hat/buttjump-4.png"
  121. "fire/hat/buttjump-5.png"
  122. "fire/hat/buttjump-6.png"))
  123. (action
  124. (name "fire-buttjump-left")
  125. (hitbox 16 15 32 64)
  126. (fps 20.0)
  127. (loops 1)
  128. (mirror-action "fire-buttjump-right"))
  129. (action
  130. (name "fire-swimming-right")
  131. (fps 15.0)
  132. (hitbox 29 24 32 64)
  133. (images "fire/hat/swim-0.png"
  134. "fire/hat/swim-1.png"
  135. "fire/hat/swim-2.png"
  136. "fire/hat/swim-3.png"
  137. "fire/hat/swim-4.png"))
  138. (action
  139. (name "fire-swimming-left")
  140. (fps 15.0)
  141. (hitbox 29 24 32 64)
  142. (mirror-action "fire-swimming-right"))
  143. (action
  144. (name "fire-floating-right")
  145. (fps 11.0)
  146. (hitbox 29 24 32 64)
  147. (images "fire/hat/swim-0.png"
  148. "fire/hat/swim-1.png"
  149. "fire/hat/swim-2.png"
  150. "fire/hat/swimidle1.png"
  151. "fire/hat/swimidle1.png"
  152. "fire/hat/swimidle1.png"
  153. "fire/hat/swimidle1.png"
  154. "fire/hat/swimidle1.png"
  155. "fire/hat/swimidle1.png"
  156. "fire/hat/swimidle1.png"
  157. "fire/hat/swimidle1.png"
  158. "fire/hat/swimidle1.png"
  159. "fire/hat/swimidle1.png"
  160. "fire/hat/swimidle1.png"
  161. "fire/hat/swimidle1.png"
  162. "fire/hat/swimidle1.png"
  163. "fire/hat/swimidle1.png"
  164. "fire/hat/swimidle1.png"
  165. "fire/hat/swimidle1.png"
  166. "fire/hat/swimidle1.png"
  167. "fire/hat/swimidle1.png"
  168. "fire/hat/swimidle1.png"
  169. "fire/hat/swimidle1.png"))
  170. (action
  171. (name "fire-floating-left")
  172. (fps 11.0)
  173. (hitbox 29 24 32 64)
  174. (mirror-action "fire-floating-right"))
  175. (action
  176. (name "fire-swimjump-right")
  177. (fps 10.0)
  178. (loops 1)
  179. (hitbox 29 24 32 64)
  180. (images "fire/hat/swim-0.png"))
  181. (action
  182. (name "fire-swimjump-left")
  183. (fps 10.0)
  184. (loops 1)
  185. (hitbox 29 24 32 64)
  186. (mirror-action "fire-swimjump-right"))
  187. ; Ice Tux
  188. (action
  189. (name "ice-walk-right")
  190. (fps 15)
  191. (hitbox 16 15 32 64)
  192. (images "ice/hat/walk-0.png"
  193. "ice/hat/walk-1.png"
  194. "ice/hat/walk-0.png"
  195. "ice/hat/walk-3.png"))
  196. (action
  197. (name "ice-walk-left")
  198. (fps 15)
  199. (hitbox 16 15 32 64)
  200. (mirror-action "ice-walk-right"))
  201. (action
  202. (name "ice-stand-right")
  203. (hitbox 16 15 32 64)
  204. (images "ice/hat/stand.png"))
  205. (action
  206. (name "ice-stand-left")
  207. (hitbox 16 15 32 64)
  208. (mirror-action "ice-stand-right"))
  209. (action
  210. (name "ice-walljump-right")
  211. (hitbox 24 14 32 64)
  212. (images "ice/hat/ice-walljump.png"))
  213. (action
  214. (name "ice-walljump-left")
  215. (hitbox 8 14 32 64)
  216. (mirror-action "ice-walljump-right"))
  217. (action
  218. (name "ice-jump-right")
  219. (hitbox 16 15 32 64)
  220. (images "ice/hat/stand.png"))
  221. (action
  222. (name "ice-jump-left")
  223. (hitbox 16 15 32 64)
  224. (mirror-action "ice-jump-right"))
  225. (action
  226. (name "ice-fall-right")
  227. (hitbox 16 15 32 64)
  228. (images "ice/hat/stand.png"))
  229. (action
  230. (name "ice-fall-left")
  231. (hitbox 16 15 32 64)
  232. (mirror-action "ice-jump-right"))
  233. (action
  234. (name "ice-skid-right")
  235. (hitbox 16 15 32 64)
  236. (images "ice/hat/skid.png"))
  237. (action
  238. (name "ice-skid-left")
  239. (hitbox 16 15 32 64)
  240. (mirror-action "ice-skid-right"))
  241. (action
  242. (name "ice-kick-right")
  243. (hitbox 16 15 32 64)
  244. (images "ice/hat/stand.png"))
  245. (action
  246. (name "ice-kick-left")
  247. (hitbox 16 15 32 64)
  248. (mirror-action "ice-kick-right"))
  249. (action
  250. (name "ice-idle-right")
  251. (hitbox 16 15 32 64)
  252. (images "ice/hat/stand.png"))
  253. (action
  254. (name "ice-idle-left")
  255. (hitbox 16 15 32 64)
  256. (mirror-action "ice-idle-right"))
  257. (action
  258. (name "ice-climbing-right")
  259. (hitbox 9 14 25 64)
  260. (fps 15.0)
  261. (images "ice/hat/climb-0.png"
  262. "ice/hat/climb-0.png"
  263. "ice/hat/climb-0.png"
  264. "ice/hat/climb-0.png"
  265. "ice/hat/climb-1.png"
  266. "ice/hat/climb-1.png"
  267. "ice/hat/climb-1.png"
  268. "ice/hat/climb-1.png"))
  269. (action
  270. (name "ice-climbing-left")
  271. (hitbox 9 14 25 64)
  272. (fps 15.0)
  273. (mirror-action "ice-climbing-right"))
  274. (action
  275. (name "ice-duck-right")
  276. (hitbox 16 45 32 32)
  277. (images "ice/hat/duck.png"))
  278. (action
  279. (name "ice-duck-left")
  280. (hitbox 16 45 32 32)
  281. (mirror-action "ice-duck-right"))
  282. (action
  283. (name "ice-backflip-right")
  284. (hitbox 16 37 32 32)
  285. (images "ice/hat/backflip.png"))
  286. (action
  287. (name "ice-backflip-left")
  288. (hitbox 16 37 32 32)
  289. (mirror-action "ice-backflip-right"))
  290. (action
  291. (name "ice-buttjump-right")
  292. (hitbox 16 15 32 64)
  293. (fps 20.0)
  294. (loops 1)
  295. (images "ice/hat/buttjump-0.png"
  296. "ice/hat/buttjump-1.png"
  297. "ice/hat/buttjump-2.png"
  298. "ice/hat/buttjump-3.png"
  299. "ice/hat/buttjump-4.png"
  300. "ice/hat/buttjump-5.png"
  301. "ice/hat/buttjump-6.png"))
  302. (action
  303. (name "ice-buttjump-left")
  304. (hitbox 16 15 32 64)
  305. (fps 20.0)
  306. (loops 1)
  307. (mirror-action "ice-buttjump-right"))
  308. (action
  309. (name "ice-swimming-right")
  310. (fps 15.0)
  311. (hitbox 29 24 32 64)
  312. (images "ice/hat/swim-0.png"
  313. "ice/hat/swim-1.png"
  314. "ice/hat/swim-2.png"
  315. "ice/hat/swim-3.png"
  316. "ice/hat/swim-4.png"))
  317. (action
  318. (name "ice-swimming-left")
  319. (fps 15.0)
  320. (hitbox 29 24 32 64)
  321. (mirror-action "ice-swimming-right"))
  322. (action
  323. (name "ice-floating-right")
  324. (fps 11.0)
  325. (hitbox 29 24 32 64)
  326. (images "ice/hat/swim-0.png"
  327. "ice/hat/swim-1.png"
  328. "ice/hat/swim-2.png"
  329. "ice/hat/swimidle1.png"
  330. "ice/hat/swimidle1.png"
  331. "ice/hat/swimidle1.png"
  332. "ice/hat/swimidle1.png"
  333. "ice/hat/swimidle1.png"
  334. "ice/hat/swimidle1.png"
  335. "ice/hat/swimidle1.png"
  336. "ice/hat/swimidle1.png"
  337. "ice/hat/swimidle1.png"
  338. "ice/hat/swimidle1.png"
  339. "ice/hat/swimidle1.png"
  340. "ice/hat/swimidle1.png"
  341. "ice/hat/swimidle1.png"
  342. "ice/hat/swimidle1.png"
  343. "ice/hat/swimidle1.png"
  344. "ice/hat/swimidle1.png"
  345. "ice/hat/swimidle1.png"
  346. "ice/hat/swimidle1.png"
  347. "ice/hat/swimidle1.png"
  348. "ice/hat/swimidle1.png"))
  349. (action
  350. (name "ice-floating-left")
  351. (fps 11.0)
  352. (hitbox 29 24 32 64)
  353. (mirror-action "ice-floating-right"))
  354. (action
  355. (name "ice-swimjump-right")
  356. (fps 10.0)
  357. (loops 1)
  358. (hitbox 29 24 32 64)
  359. (images "ice/hat/swim-0.png"))
  360. (action
  361. (name "ice-swimjump-left")
  362. (fps 10.0)
  363. (loops 1)
  364. (hitbox 29 24 32 64)
  365. (mirror-action "ice-swimjump-right"))
  366. ; Air Tux
  367. (action
  368. (name "air-walk-right")
  369. (fps 15)
  370. (hitbox 16 15 32 64)
  371. (images "air/hat/walk-0.png"
  372. "air/hat/walk-1.png"
  373. "air/hat/walk-0.png"
  374. "air/hat/walk-3.png"))
  375. (action
  376. (name "air-walk-left")
  377. (fps 15)
  378. (hitbox 16 15 32 64)
  379. (mirror-action "air-walk-right"))
  380. (action
  381. (name "air-stand-right")
  382. (hitbox 16 15 32 64)
  383. (images "air/hat/stand.png"))
  384. (action
  385. (name "air-stand-left")
  386. (hitbox 16 15 32 64)
  387. (mirror-action "air-stand-right"))
  388. (action
  389. (name "air-walljump-right")
  390. (hitbox 24 14 32 64)
  391. (images "air/hat/air-walljump.png"))
  392. (action
  393. (name "air-walljump-left")
  394. (hitbox 8 14 32 64)
  395. (mirror-action "air-walljump-right"))
  396. (action
  397. (name "air-jump-right")
  398. (fps 10)
  399. (hitbox 16 15 32 64)
  400. (images "air/hat/spin-0.png"
  401. "air/hat/spin-1.png"
  402. "air/hat/spin-2.png"
  403. "air/hat/spin-1.png"))
  404. (action
  405. (name "air-jump-left")
  406. (hitbox 16 15 32 64)
  407. (mirror-action "air-jump-right"))
  408. (action
  409. (name "air-fall-right")
  410. (fps 10)
  411. (hitbox 16 15 32 64)
  412. (images "air/hat/spin-0.png"
  413. "air/hat/spin-1.png"
  414. "air/hat/spin-2.png"
  415. "air/hat/spin-1.png"))
  416. (action
  417. (name "air-fall-left")
  418. (hitbox 16 15 32 64)
  419. (mirror-action "air-jump-right"))
  420. (action
  421. (name "air-skid-right")
  422. (hitbox 16 15 32 64)
  423. (images "air/hat/skid.png"))
  424. (action
  425. (name "air-skid-left")
  426. (hitbox 16 15 32 64)
  427. (mirror-action "air-skid-right"))
  428. (action
  429. (name "air-kick-right")
  430. (hitbox 16 15 32 64)
  431. (images "air/hat/stand.png"))
  432. (action
  433. (name "air-kick-left")
  434. (hitbox 16 15 32 64)
  435. (mirror-action "air-kick-right"))
  436. (action
  437. (name "air-idle-right")
  438. (fps 5)
  439. (hitbox 16 15 32 64)
  440. (images "air/hat/spin-0.png"
  441. "air/hat/spin-1.png"
  442. "air/hat/spin-2.png"
  443. "air/hat/spin-1.png"))
  444. (action
  445. (name "air-idle-left")
  446. (hitbox 16 15 32 64)
  447. (mirror-action "air-idle-right"))
  448. (action
  449. (name "air-climbing-right")
  450. (hitbox 9 14 25 64)
  451. (fps 15.0)
  452. (images "air/hat/climb-0.png"
  453. "air/hat/climb-0.png"
  454. "air/hat/climb-0.png"
  455. "air/hat/climb-0.png"
  456. "air/hat/climb-1.png"
  457. "air/hat/climb-1.png"
  458. "air/hat/climb-1.png"
  459. "air/hat/climb-1.png"))
  460. (action
  461. (name "air-climbing-left")
  462. (hitbox 9 14 25 64)
  463. (fps 15.0)
  464. (mirror-action "air-climbing-right"))
  465. (action
  466. (name "air-duck-right")
  467. (hitbox 16 45 32 32)
  468. (images "air/hat/duck.png"))
  469. (action
  470. (name "air-duck-left")
  471. (hitbox 16 45 32 32)
  472. (mirror-action "air-duck-right"))
  473. (action
  474. (name "air-backflip-right")
  475. (hitbox 16 37 32 32)
  476. (images "air/hat/backflip.png"))
  477. (action
  478. (name "air-backflip-left")
  479. (hitbox 16 37 32 32)
  480. (mirror-action "air-backflip-right"))
  481. (action
  482. (name "air-buttjump-right")
  483. (hitbox 16 15 32 64)
  484. (fps 20.0)
  485. (loops 1)
  486. (images "air/hat/buttjump-0.png"
  487. "air/hat/buttjump-1.png"
  488. "air/hat/buttjump-2.png"
  489. "air/hat/buttjump-3.png"
  490. "air/hat/buttjump-4.png"
  491. "air/hat/buttjump-5.png"
  492. "air/hat/buttjump-6.png"))
  493. (action
  494. (name "air-buttjump-left")
  495. (hitbox 16 15 32 64)
  496. (fps 20.0)
  497. (loops 1)
  498. (mirror-action "air-buttjump-right"))
  499. (action
  500. (name "air-swimming-right")
  501. (fps 15.0)
  502. (hitbox 29 24 32 64)
  503. (images "air/hat/swim-0.png"
  504. "air/hat/swim-1.png"
  505. "air/hat/swim-2.png"
  506. "air/hat/swim-3.png"
  507. "air/hat/swim-4.png"))
  508. (action
  509. (name "air-swimming-left")
  510. (fps 15.0)
  511. (hitbox 29 24 32 64)
  512. (mirror-action "air-swimming-right"))
  513. (action
  514. (name "air-floating-right")
  515. (fps 11.0)
  516. (hitbox 29 24 32 64)
  517. (images "air/hat/swim-0.png"
  518. "air/hat/swim-1.png"
  519. "air/hat/swim-2.png"
  520. "air/hat/swimidle1.png"
  521. "air/hat/swimidle1.png"
  522. "air/hat/swimidle1.png"
  523. "air/hat/swimidle1.png"
  524. "air/hat/swimidle1.png"
  525. "air/hat/swimidle1.png"
  526. "air/hat/swimidle1.png"
  527. "air/hat/swimidle1.png"
  528. "air/hat/swimidle1.png"
  529. "air/hat/swimidle1.png"
  530. "air/hat/swimidle1.png"
  531. "air/hat/swimidle1.png"
  532. "air/hat/swimidle1.png"
  533. "air/hat/swimidle1.png"
  534. "air/hat/swimidle1.png"
  535. "air/hat/swimidle1.png"
  536. "air/hat/swimidle1.png"
  537. "air/hat/swimidle1.png"
  538. "air/hat/swimidle1.png"))
  539. (action
  540. (name "air-floating-left")
  541. (fps 11.0)
  542. (hitbox 29 24 32 64)
  543. (mirror-action "air-floating-right"))
  544. (action
  545. (name "air-swimjump-right")
  546. (fps 10.0)
  547. (loops 1)
  548. (hitbox 29 24 32 64)
  549. (images "air/hat/swim-0.png"))
  550. (action
  551. (name "air-swimjump-left")
  552. (fps 10.0)
  553. (loops 1)
  554. (hitbox 29 24 32 64)
  555. (mirror-action "air-swimjump-right"))
  556. ; Earth Tux
  557. (action
  558. (name "earth-walk-right")
  559. (fps 15)
  560. (hitbox 16 15 32 64)
  561. (images "earth/hardhat/walk-0.png"
  562. "earth/hardhat/walk-1.png"
  563. "earth/hardhat/walk-0.png"
  564. "earth/hardhat/walk-3.png"))
  565. (action
  566. (name "earth-walk-left")
  567. (fps 15)
  568. (hitbox 16 15 32 64)
  569. (mirror-action "earth-walk-right"))
  570. (action
  571. (name "earth-stand-right")
  572. (hitbox 16 15 32 64)
  573. (images "earth/hardhat/stand.png"))
  574. (action
  575. (name "earth-stand-left")
  576. (hitbox 16 15 32 64)
  577. (mirror-action "earth-stand-right"))
  578. (action
  579. (name "earth-walljump-right")
  580. (hitbox 24 14 32 64)
  581. (images "earth/hardhat/earth-walljump.png"))
  582. (action
  583. (name "earth-walljump-left")
  584. (hitbox 8 14 32 64)
  585. (mirror-action "earth-walljump-right"))
  586. (action
  587. (name "earth-jump-right")
  588. (hitbox 16 15 32 64)
  589. (images "earth/hardhat/stand.png"))
  590. (action
  591. (name "earth-jump-left")
  592. (hitbox 16 15 32 64)
  593. (mirror-action "earth-jump-right"))
  594. (action
  595. (name "earth-fall-right")
  596. (hitbox 16 15 32 64)
  597. (images "earth/hardhat/stand.png"))
  598. (action
  599. (name "earth-fall-left")
  600. (hitbox 16 15 32 64)
  601. (mirror-action "earth-jump-right"))
  602. (action
  603. (name "earth-skid-right")
  604. (hitbox 16 15 32 64)
  605. (images "earth/hardhat/skid.png"))
  606. (action
  607. (name "earth-skid-left")
  608. (hitbox 16 15 32 64)
  609. (mirror-action "earth-skid-right"))
  610. (action
  611. (name "earth-kick-right")
  612. (hitbox 16 15 32 64)
  613. (images "earth/hardhat/stand.png"))
  614. (action
  615. (name "earth-kick-left")
  616. (hitbox 16 15 32 64)
  617. (mirror-action "earth-kick-right"))
  618. (action
  619. (name "earth-idle-right")
  620. (hitbox 16 15 32 64)
  621. (images "earth/hardhat/stand.png"))
  622. (action
  623. (name "earth-idle-left")
  624. (hitbox 16 15 32 64)
  625. (mirror-action "earth-idle-right"))
  626. (action
  627. (name "earth-climbing-right")
  628. (hitbox 9 14 25 64)
  629. (fps 15.0)
  630. (images "earth/hardhat/climb-0.png"
  631. "earth/hardhat/climb-0.png"
  632. "earth/hardhat/climb-0.png"
  633. "earth/hardhat/climb-0.png"
  634. "earth/hardhat/climb-1.png"
  635. "earth/hardhat/climb-1.png"
  636. "earth/hardhat/climb-1.png"
  637. "earth/hardhat/climb-1.png"))
  638. (action
  639. (name "earth-climbing-left")
  640. (hitbox 9 14 25 64)
  641. (fps 15.0)
  642. (mirror-action "earth-climbing-right"))
  643. (action
  644. (name "earth-duck-right")
  645. (hitbox 16 45 32 32)
  646. (images "earth/hardhat/duck.png"))
  647. (action
  648. (name "earth-duck-left")
  649. (hitbox 16 45 32 32)
  650. (mirror-action "earth-duck-right"))
  651. (action
  652. (name "earth-backflip-right")
  653. (hitbox 16 37 32 32)
  654. (images "earth/hardhat/backflip.png"))
  655. (action
  656. (name "earth-backflip-left")
  657. (hitbox 16 37 32 32)
  658. (mirror-action "earth-backflip-right"))
  659. (action
  660. (name "earth-buttjump-right")
  661. (hitbox 16 15 32 64)
  662. (fps 20.0)
  663. (loops 1)
  664. (images "earth/hardhat/buttjump-0.png"
  665. "earth/hardhat/buttjump-1.png"
  666. "earth/hardhat/buttjump-2.png"
  667. "earth/hardhat/buttjump-3.png"
  668. "earth/hardhat/buttjump-4.png"
  669. "earth/hardhat/buttjump-5.png"
  670. "earth/hardhat/buttjump-6.png"))
  671. (action
  672. (name "earth-buttjump-left")
  673. (hitbox 16 15 32 64)
  674. (fps 20.0)
  675. (loops 1)
  676. (mirror-action "earth-buttjump-right"))
  677. (action
  678. (name "earth-swimming-right")
  679. (fps 15.0)
  680. (hitbox 29 24 32 64)
  681. (images "earth/hardhat/swim-0.png"
  682. "earth/hardhat/swim-1.png"
  683. "earth/hardhat/swim-2.png"
  684. "earth/hardhat/swim-3.png"
  685. "earth/hardhat/swim-4.png"))
  686. (action
  687. (name "earth-swimming-left")
  688. (fps 15.0)
  689. (hitbox 29 24 32 64)
  690. (mirror-action "earth-swimming-right"))
  691. (action
  692. (name "earth-floating-right")
  693. (fps 11.0)
  694. (hitbox 29 24 32 64)
  695. (images "earth/hardhat/swim-0.png"
  696. "earth/hardhat/swim-1.png"
  697. "earth/hardhat/swim-2.png"
  698. "earth/hardhat/swimidle1.png"
  699. "earth/hardhat/swimidle1.png"
  700. "earth/hardhat/swimidle1.png"
  701. "earth/hardhat/swimidle1.png"
  702. "earth/hardhat/swimidle1.png"
  703. "earth/hardhat/swimidle1.png"
  704. "earth/hardhat/swimidle1.png"
  705. "earth/hardhat/swimidle1.png"
  706. "earth/hardhat/swimidle1.png"
  707. "earth/hardhat/swimidle1.png"
  708. "earth/hardhat/swimidle1.png"
  709. "earth/hardhat/swimidle1.png"
  710. "earth/hardhat/swimidle1.png"
  711. "earth/hardhat/swimidle1.png"
  712. "earth/hardhat/swimidle1.png"
  713. "earth/hardhat/swimidle1.png"
  714. "earth/hardhat/swimidle1.png"
  715. "earth/hardhat/swimidle1.png"
  716. "earth/hardhat/swimidle1.png"))
  717. (action
  718. (name "earth-floating-left")
  719. (fps 11.0)
  720. (hitbox 29 24 32 64)
  721. (mirror-action "earth-floating-right"))
  722. (action
  723. (name "earth-swimjump-right")
  724. (fps 10.0)
  725. (loops 1)
  726. (hitbox 29 24 32 64)
  727. (images "earth/hardhat/swim-0.png"))
  728. (action
  729. (name "earth-swimjump-left")
  730. (fps 10.0)
  731. (loops 1)
  732. (hitbox 29 24 32 64)
  733. (mirror-action "earth-swimjump-right"))
  734. ; Santa Tux
  735. (action
  736. (name "santa-walk-right")
  737. (fps 15)
  738. (hitbox 16 15 32 64)
  739. (images "fire/santa_cap/walk-0.png"
  740. "fire/santa_cap/walk-1.png"
  741. "fire/santa_cap/walk-0.png"
  742. "fire/santa_cap/walk-3.png"))
  743. (action
  744. (name "santa-walk-left")
  745. (fps 15)
  746. (hitbox 16 15 32 64)
  747. (mirror-action "santa-walk-right"))
  748. (action
  749. (name "santa-stand-right")
  750. (hitbox 16 15 32 64)
  751. (images "fire/santa_cap/stand.png"))
  752. (action
  753. (name "santa-stand-left")
  754. (hitbox 16 15 32 64)
  755. (mirror-action "santa-stand-right"))
  756. (action
  757. (name "santa-walljump-right")
  758. (hitbox 24 14 32 64)
  759. (images "fire/santa_cap/santa-walljump.png"))
  760. (action
  761. (name "santa-walljump-left")
  762. (hitbox 8 14 32 64)
  763. (mirror-action "santa-walljump-right"))
  764. (action
  765. (name "santa-jump-right")
  766. (hitbox 16 15 32 64)
  767. (images "fire/santa_cap/stand.png"))
  768. (action
  769. (name "santa-jump-left")
  770. (hitbox 16 15 32 64)
  771. (mirror-action "santa-jump-right"))
  772. (action
  773. (name "santa-fall-right")
  774. (hitbox 16 15 32 64)
  775. (images "fire/santa_cap/stand.png"))
  776. (action
  777. (name "santa-fall-left")
  778. (hitbox 16 15 32 64)
  779. (mirror-action "santa-jump-right"))
  780. (action
  781. (name "santa-skid-right")
  782. (hitbox 16 15 32 64)
  783. (images "fire/santa_cap/skid.png"))
  784. (action
  785. (name "santa-skid-left")
  786. (hitbox 16 15 32 64)
  787. (mirror-action "santa-skid-right"))
  788. (action
  789. (name "santa-kick-right")
  790. (hitbox 16 15 32 64)
  791. (images "fire/santa_cap/stand.png"))
  792. (action
  793. (name "santa-kick-left")
  794. (hitbox 16 15 32 64)
  795. (mirror-action "santa-kick-right"))
  796. (action
  797. (name "santa-idle-right")
  798. (hitbox 16 15 32 64)
  799. (images "fire/santa_cap/stand.png"))
  800. (action
  801. (name "santa-idle-left")
  802. (hitbox 16 15 32 64)
  803. (mirror-action "santa-idle-right"))
  804. (action
  805. (name "santa-climbing-right")
  806. (hitbox 9 14 25 64)
  807. (fps 15.0)
  808. (images "fire/santa_cap/climb-0.png"
  809. "fire/santa_cap/climb-0.png"
  810. "fire/santa_cap/climb-0.png"
  811. "fire/santa_cap/climb-0.png"
  812. "fire/santa_cap/climb-1.png"
  813. "fire/santa_cap/climb-1.png"
  814. "fire/santa_cap/climb-1.png"
  815. "fire/santa_cap/climb-1.png"))
  816. (action
  817. (name "santa-climbing-left")
  818. (hitbox 9 14 25 64)
  819. (fps 15.0)
  820. (mirror-action "santa-climbing-right"))
  821. (action
  822. (name "santa-duck-right")
  823. (hitbox 16 45 32 32)
  824. (images "fire/santa_cap/duck.png"))
  825. (action
  826. (name "santa-duck-left")
  827. (hitbox 16 45 32 32)
  828. (mirror-action "santa-duck-right"))
  829. (action
  830. (name "santa-backflip-right")
  831. (hitbox 16 37 32 32)
  832. (images "fire/santa_cap/backflip.png"))
  833. (action
  834. (name "santa-backflip-left")
  835. (hitbox 16 37 32 32)
  836. (mirror-action "santa-backflip-right"))
  837. (action
  838. (name "santa-buttjump-right")
  839. (hitbox 16 15 32 64)
  840. (fps 20.0)
  841. (loops 1)
  842. (images "fire/santa_cap/buttjump-0.png"
  843. "fire/santa_cap/buttjump-1.png"
  844. "fire/santa_cap/buttjump-2.png"
  845. "fire/santa_cap/buttjump-3.png"
  846. "fire/santa_cap/buttjump-4.png"
  847. "fire/santa_cap/buttjump-5.png"
  848. "fire/santa_cap/buttjump-6.png"))
  849. (action
  850. (name "santa-buttjump-left")
  851. (hitbox 16 15 32 64)
  852. (fps 20.0)
  853. (loops 1)
  854. (mirror-action "santa-buttjump-right"))
  855. (action
  856. (name "santa-swimming-right")
  857. (fps 15.0)
  858. (hitbox 29 24 32 64)
  859. (images "fire/santa_cap/swim-0.png"
  860. "fire/santa_cap/swim-1.png"
  861. "fire/santa_cap/swim-2.png"
  862. "fire/santa_cap/swim-3.png"
  863. "fire/santa_cap/swim-4.png"))
  864. (action
  865. (name "santa-swimming-left")
  866. (fps 15.0)
  867. (hitbox 29 24 32 64)
  868. (mirror-action "santa-swimming-right"))
  869. (action
  870. (name "santa-floating-right")
  871. (fps 11.0)
  872. (hitbox 29 24 32 64)
  873. (images "fire/santa_cap/swim-0.png"
  874. "fire/santa_cap/swim-1.png"
  875. "fire/santa_cap/swim-2.png"
  876. "fire/santa_cap/swimidle1.png"
  877. "fire/santa_cap/swimidle1.png"
  878. "fire/santa_cap/swimidle1.png"
  879. "fire/santa_cap/swimidle1.png"
  880. "fire/santa_cap/swimidle1.png"
  881. "fire/santa_cap/swimidle1.png"
  882. "fire/santa_cap/swimidle1.png"
  883. "fire/santa_cap/swimidle1.png"
  884. "fire/santa_cap/swimidle1.png"
  885. "fire/santa_cap/swimidle1.png"
  886. "fire/santa_cap/swimidle1.png"
  887. "fire/santa_cap/swimidle1.png"
  888. "fire/santa_cap/swimidle1.png"
  889. "fire/santa_cap/swimidle1.png"
  890. "fire/santa_cap/swimidle1.png"
  891. "fire/santa_cap/swimidle1.png"
  892. "fire/santa_cap/swimidle1.png"
  893. "fire/santa_cap/swimidle1.png"
  894. "fire/santa_cap/swimidle1.png"
  895. "fire/santa_cap/swimidle1.png"))
  896. (action
  897. (name "santa-floating-left")
  898. (fps 11.0)
  899. (hitbox 29 24 32 64)
  900. (mirror-action "santa-floating-right"))
  901. (action
  902. (name "santa-swimjump-right")
  903. (fps 10.0)
  904. (loops 1)
  905. (hitbox 29 24 32 64)
  906. (images "fire/santa_cap/swim-0.png"))
  907. (action
  908. (name "santa-swimjump-left")
  909. (fps 10.0)
  910. (loops 1)
  911. (hitbox 29 24 32 64)
  912. (mirror-action "santa-swimjump-right"))
  913. )