└── captain-holetooth-gamemaker └── Captain Holetooth.yyp └── Captain Holetooth.yyp ├── Captain Holetooth.resource_order ├── Captain Holetooth.yyp ├── datafiles └── birds │ ├── bird_anim-sheet.png │ ├── bird_anim.png.flags │ └── birds.tscn ├── fonts └── cahofont │ ├── cahofont.old.png │ ├── cahofont.old.yy │ ├── cahofont.png │ └── cahofont.yy ├── objects ├── Nagel │ └── Nagel.yy ├── ObjCastleImage │ └── ObjCastleImage.yy ├── ObjCastleWindow │ └── ObjCastleWindow.yy ├── Object4 │ └── Object4.yy ├── btnCloseOverlay │ ├── Mouse_4.gml │ ├── Mouse_4.gml.dnd │ └── btnCloseOverlay.yy ├── btnMenuBack │ ├── Create_0.gml │ ├── Draw_0.gml │ ├── Draw_64.gml │ ├── Mouse_4.gml │ ├── Mouse_4.gml.dnd │ └── btnMenuBack.yy ├── btnMenuOptions │ ├── Create_0.gml │ ├── Draw_0.gml │ ├── Draw_64.gml │ ├── Mouse_4.gml │ ├── Mouse_4.gml.dnd │ └── btnMenuOptions.yy ├── btnMenuStart │ ├── Create_0.gml │ ├── Draw_0.gml │ ├── Draw_64.gml │ ├── Mouse_4.gml │ ├── Mouse_4.gml.dnd │ └── btnMenuStart.yy ├── obj_moving_platform │ └── obj_moving_platform.yy ├── obj_player │ └── obj_player.yy ├── pille │ └── pille.yy ├── player_shot │ └── player_shot.yy └── solidwand │ └── solidwand.yy ├── options ├── linux │ ├── options_linux.yy │ └── splash │ │ └── splash.png ├── mac │ ├── options_mac.yy │ └── splash │ │ └── splash.png ├── main │ ├── options_main.yy │ └── template_image.png ├── operagx │ └── options_operagx.yy └── windows │ ├── installer │ ├── finished.bmp │ └── header.bmp │ ├── options_windows.yy │ └── splash │ └── splash.png ├── rooms ├── gui_mainmenu │ ├── InstanceCreationCode_inst_3C6AAD45.gml │ ├── InstanceCreationCode_inst_3C6AAD45.gml.dnd │ ├── RoomCreationCode.gml │ ├── RoomCreationCode.gml.dnd │ └── gui_mainmenu.yy ├── gui_options │ ├── InstanceCreationCode_inst_3C6AAD45.gml │ ├── InstanceCreationCode_inst_3C6AAD45.gml.dnd │ ├── InstanceCreationCode_inst_3C6AAD45_1.gml.dnd │ ├── RoomCreationCode.gml │ ├── RoomCreationCode.gml.dnd │ └── gui_options.yy ├── lvl1_forest │ ├── InstanceCreationCode_inst_2803AC7D.gml.dnd │ ├── InstanceCreationCode_inst_4E80E0E0.gml │ ├── InstanceCreationCode_inst_4E80E0E0.gml.dnd │ ├── RoomCreationCode.gml │ ├── RoomCreationCode.gml.dnd │ └── lvl1_forest.yy ├── lvl2_mountains │ ├── InstanceCreationCode_inst_4E80E0E0.gml │ ├── InstanceCreationCode_inst_4E80E0E0.gml.dnd │ ├── RoomCreationCode.gml │ └── lvl2_mountains.yy ├── lvl3_castle │ ├── InstanceCreationCode_inst_4E80E0E0.gml │ ├── InstanceCreationCode_inst_4E80E0E0.gml.dnd │ ├── RoomCreationCode.gml │ └── lvl3_castle.yy ├── lvl3_castle_inside │ ├── InstanceCreationCode_inst_4E80E0E0.gml │ ├── InstanceCreationCode_inst_4E80E0E0.gml.dnd │ ├── RoomCreationCode.gml │ └── lvl3_castle_inside.yy ├── minigame_yankandy │ ├── RoomCreationCode.gml │ └── minigame_yankandy.yy ├── scn_cutscene │ └── scn_cutscene.yy └── scn_intro │ └── scn_intro.yy ├── sequences ├── Cutscene │ └── Cutscene.yy └── txtHelp │ └── txtHelp.yy ├── sounds ├── MainMenuMusic │ ├── MainMenuMusic.ogg │ └── MainMenuMusic.yy ├── Music1 │ ├── Music1.ogg │ └── Music1.yy ├── Yankandy_music │ ├── Yankandy_music.ogg │ └── Yankandy_music.yy ├── froglegs │ ├── froglegs.ogg │ └── froglegs.yy ├── scn2_comic_music │ ├── scn2_comic_music.ogg │ └── scn2_comic_music.yy ├── sndCoin │ ├── sndCoin.wav │ └── sndCoin.yy └── sndWindloop │ ├── sndWindloop.ogg │ └── sndWindloop.yy ├── sprites ├── BtnGeneric │ ├── 470bcccd-8c52-4531-9f06-5d6d73332222.png │ ├── BtnGeneric.yy │ └── layers │ │ └── 470bcccd-8c52-4531-9f06-5d6d73332222 │ │ └── c45b160d-bd02-46c7-9b4c-113adbf037e8.png ├── CastleImage │ ├── CastleImage.yy │ ├── e5d8a9e1-ca85-44ae-8b64-385c10cd3611.png │ └── layers │ │ └── e5d8a9e1-ca85-44ae-8b64-385c10cd3611 │ │ └── 900a08c3-4b48-413a-b348-e1a13fb5569e.png ├── CastleWindow │ ├── 1303e6bf-0a6c-4fe7-8c9e-d4d8e491a2fa.png │ ├── CastleWindow.yy │ └── layers │ │ └── 1303e6bf-0a6c-4fe7-8c9e-d4d8e491a2fa │ │ └── 47fbcb3a-c7ec-47b4-9743-6253161cfb1c.png ├── Sprite17 │ ├── 76fac358-3c42-4070-9cb0-fadc4f38a85b.png │ ├── Sprite17.yy │ └── layers │ │ └── 76fac358-3c42-4070-9cb0-fadc4f38a85b │ │ └── b1dc1d39-b2f7-4f37-9ef7-63d8ab7c8ee0.png ├── Start_Menu │ ├── 4ae1196d-40af-4f1d-ade6-fb26f1be38ba.png │ ├── Start_Menu.yy │ └── layers │ │ └── 4ae1196d-40af-4f1d-ade6-fb26f1be38ba │ │ ├── 2ed4d1f1-ae54-48cd-ae09-eaf19c3ba315.png │ │ └── d1373d9e-6da8-4f99-a658-03ba51060251.png ├── TilSetCastleInside │ ├── TilSetCastleInside.yy │ ├── d4bcdfb8-4214-4b9d-900e-3069b09af45b.png │ └── layers │ │ └── d4bcdfb8-4214-4b9d-900e-3069b09af45b │ │ └── 6bb3e205-4c90-420c-9bb6-dd6e8d80b1a8.png ├── TilSetCastleOutside │ ├── 56f09687-eba9-4fa6-b2e5-85123e569254.png │ ├── 999ecf57-074a-427b-a9af-68dc5c4710fa.png │ ├── TilSetCastleOutside.yy │ └── layers │ │ ├── 56f09687-eba9-4fa6-b2e5-85123e569254 │ │ └── bebd14c5-39b5-40fb-9b89-f91657c14adb.png │ │ └── 999ecf57-074a-427b-a9af-68dc5c4710fa │ │ └── bebd14c5-39b5-40fb-9b89-f91657c14adb.png ├── bg_forest │ ├── 99084b66-c010-41f9-943d-43aa08ace671.png │ ├── bg_forest.yy │ └── layers │ │ └── 99084b66-c010-41f9-943d-43aa08ace671 │ │ └── 5552e7a5-8283-4b8b-80e6-843ddcf0a739.png ├── candy_egg_image │ ├── 868044ba-58d3-4fbc-b048-5b324a96fd9b.png │ ├── candy_egg_image.yy │ └── layers │ │ └── 868044ba-58d3-4fbc-b048-5b324a96fd9b │ │ └── a1fd58c6-5702-470c-8d08-ecf008d11e46.png ├── close_button │ ├── 138ab8ba-ab5b-4018-9c94-75ffbefd7f3b.png │ ├── close_button.yy │ └── layers │ │ └── 138ab8ba-ab5b-4018-9c94-75ffbefd7f3b │ │ └── a1daec0f-df9e-4d52-b18c-7db781d6028e.png ├── de │ ├── dae0b85e-b5c8-4884-acd5-e327030e04e0.png │ ├── de.yy │ └── layers │ │ └── dae0b85e-b5c8-4884-acd5-e327030e04e0 │ │ └── e70d3bad-ab07-430c-874e-c6b46dd7810b.png ├── flair_waterdrops │ ├── 03b94bd2-d5bc-447d-be0d-7ac1e29840f9.png │ ├── 06795a89-a947-49a6-a121-b6fb0ae80d24.png │ ├── 1e3a52a2-d5d7-4968-89bc-57ecd5349817.png │ ├── 22208eaf-b553-445e-8751-28ae6b3f17a3.png │ ├── 35b3576f-b40a-4b57-af0a-838d29ac170c.png │ ├── 4eaa07c4-cc61-48cb-88db-8aea337eb56e.png │ ├── 608cfd4e-0b08-42eb-ae8b-c9f3519f92ba.png │ ├── 6342f9a8-518d-4b42-85ce-105fd63e8500.png │ ├── 70d4136d-8367-4f2d-97db-ca0667b78888.png │ ├── 7b500ad2-6aec-4de1-8a99-75b1c90207b1.png │ ├── 7bddb5b9-9f73-4b37-8e4c-ecd9dce79519.png │ ├── 7fdb89fa-89b8-44ac-9ef0-f633413647e6.png │ ├── 83adbe57-1cf9-4ee9-b648-f11cc99018f7.png │ ├── 844a4b80-9d00-4d96-9110-558e6cf7257a.png │ ├── a765b2d0-3cc6-4ca5-9823-6b51c0e2aff6.png │ ├── b6e806bf-3183-48e1-8d6e-a784e11ad520.png │ ├── b72acb44-2bbe-4014-9d00-bb9fd032e20b.png │ ├── bb0b8b05-5b72-4b01-9c9b-e8ca8be03e2a.png │ ├── c09ac66a-609b-4817-982d-7d2f28511576.png │ ├── f364ef27-6429-4b5c-b51b-0c344303870e.png │ ├── f4e6b6aa-6f2a-4b15-af53-bd981581b786.png │ ├── f5618180-6326-445f-ba2d-305b19903d8f.png │ ├── f97054ba-43ca-48a4-a32a-3eb7f7f6f001.png │ ├── fa0edcc5-7aaa-4d0e-8248-08ff5ca63174.png │ ├── fe754ca8-13e0-4661-a971-7d7f69fe5c11.png │ ├── flair_waterdrops.yy │ └── layers │ │ ├── 03b94bd2-d5bc-447d-be0d-7ac1e29840f9 │ │ └── 4d8e50d1-b654-4736-a1f4-927455cc4503.png │ │ ├── 06795a89-a947-49a6-a121-b6fb0ae80d24 │ │ └── 4d8e50d1-b654-4736-a1f4-927455cc4503.png │ │ ├── 1e3a52a2-d5d7-4968-89bc-57ecd5349817 │ │ └── 4d8e50d1-b654-4736-a1f4-927455cc4503.png │ │ ├── 22208eaf-b553-445e-8751-28ae6b3f17a3 │ │ └── 4d8e50d1-b654-4736-a1f4-927455cc4503.png │ │ ├── 35b3576f-b40a-4b57-af0a-838d29ac170c │ │ └── 4d8e50d1-b654-4736-a1f4-927455cc4503.png │ │ ├── 4eaa07c4-cc61-48cb-88db-8aea337eb56e │ │ └── 4d8e50d1-b654-4736-a1f4-927455cc4503.png │ │ ├── 608cfd4e-0b08-42eb-ae8b-c9f3519f92ba │ │ └── 4d8e50d1-b654-4736-a1f4-927455cc4503.png │ │ ├── 6342f9a8-518d-4b42-85ce-105fd63e8500 │ │ └── 4d8e50d1-b654-4736-a1f4-927455cc4503.png │ │ ├── 70d4136d-8367-4f2d-97db-ca0667b78888 │ │ └── 4d8e50d1-b654-4736-a1f4-927455cc4503.png │ │ ├── 7b500ad2-6aec-4de1-8a99-75b1c90207b1 │ │ └── 4d8e50d1-b654-4736-a1f4-927455cc4503.png │ │ ├── 7bddb5b9-9f73-4b37-8e4c-ecd9dce79519 │ │ └── 4d8e50d1-b654-4736-a1f4-927455cc4503.png │ │ ├── 7fdb89fa-89b8-44ac-9ef0-f633413647e6 │ │ └── 4d8e50d1-b654-4736-a1f4-927455cc4503.png │ │ ├── 83adbe57-1cf9-4ee9-b648-f11cc99018f7 │ │ └── 4d8e50d1-b654-4736-a1f4-927455cc4503.png │ │ ├── 844a4b80-9d00-4d96-9110-558e6cf7257a │ │ └── 4d8e50d1-b654-4736-a1f4-927455cc4503.png │ │ ├── a765b2d0-3cc6-4ca5-9823-6b51c0e2aff6 │ │ └── 4d8e50d1-b654-4736-a1f4-927455cc4503.png │ │ ├── b6e806bf-3183-48e1-8d6e-a784e11ad520 │ │ └── 4d8e50d1-b654-4736-a1f4-927455cc4503.png │ │ ├── b72acb44-2bbe-4014-9d00-bb9fd032e20b │ │ └── 4d8e50d1-b654-4736-a1f4-927455cc4503.png │ │ ├── bb0b8b05-5b72-4b01-9c9b-e8ca8be03e2a │ │ └── 4d8e50d1-b654-4736-a1f4-927455cc4503.png │ │ ├── c09ac66a-609b-4817-982d-7d2f28511576 │ │ └── 4d8e50d1-b654-4736-a1f4-927455cc4503.png │ │ ├── f364ef27-6429-4b5c-b51b-0c344303870e │ │ └── 4d8e50d1-b654-4736-a1f4-927455cc4503.png │ │ ├── f4e6b6aa-6f2a-4b15-af53-bd981581b786 │ │ └── 4d8e50d1-b654-4736-a1f4-927455cc4503.png │ │ ├── f5618180-6326-445f-ba2d-305b19903d8f │ │ └── 4d8e50d1-b654-4736-a1f4-927455cc4503.png │ │ ├── f97054ba-43ca-48a4-a32a-3eb7f7f6f001 │ │ └── 4d8e50d1-b654-4736-a1f4-927455cc4503.png │ │ ├── fa0edcc5-7aaa-4d0e-8248-08ff5ca63174 │ │ └── 4d8e50d1-b654-4736-a1f4-927455cc4503.png │ │ └── fe754ca8-13e0-4661-a971-7d7f69fe5c11 │ │ └── 4d8e50d1-b654-4736-a1f4-927455cc4503.png ├── gb │ ├── 673553d9-5069-41a6-ad70-d42377661e93.png │ ├── gb.yy │ └── layers │ │ └── 673553d9-5069-41a6-ad70-d42377661e93 │ │ └── 885f8fc4-01ea-43cf-ad8e-7ee9371ddf46.png ├── lochzahn_idle │ ├── 27badc64-af52-4244-bc78-a94adb157edb.png │ ├── 3f10ac05-5cc8-40df-aac9-b3f834dfbfa3.png │ ├── 4b8b3a50-07bd-44cf-9886-91dab8238618.png │ ├── 4fd8022f-18f3-4f2f-a3b9-e0b5c5fe423a.png │ ├── 6279a970-2856-4e8a-ad68-1ea194e9a218.png │ ├── 6507c1c2-af9e-49a4-9354-89573e9fd30e.png │ ├── 87000bbd-ed74-44f0-86bd-d9c2a27979ca.png │ ├── 8e15a896-47dd-46f6-b526-7c855188d9e4.png │ ├── bde3e5d3-6640-4f1b-871f-483bb93ec993.png │ ├── e73c0915-9aff-4a72-8d89-e3c04d40bc48.png │ ├── eb9829f8-6755-4457-a183-58e573a5f9ef.png │ ├── layers │ │ ├── 27badc64-af52-4244-bc78-a94adb157edb │ │ │ └── d2e72aae-6d4b-4e0a-9d5e-02d8f828ab9e.png │ │ ├── 3f10ac05-5cc8-40df-aac9-b3f834dfbfa3 │ │ │ └── d2e72aae-6d4b-4e0a-9d5e-02d8f828ab9e.png │ │ ├── 4b8b3a50-07bd-44cf-9886-91dab8238618 │ │ │ └── d2e72aae-6d4b-4e0a-9d5e-02d8f828ab9e.png │ │ ├── 4fd8022f-18f3-4f2f-a3b9-e0b5c5fe423a │ │ │ └── d2e72aae-6d4b-4e0a-9d5e-02d8f828ab9e.png │ │ ├── 6279a970-2856-4e8a-ad68-1ea194e9a218 │ │ │ └── ee67db66-cf1a-4720-99d9-12d222c2c694.png │ │ ├── 6507c1c2-af9e-49a4-9354-89573e9fd30e │ │ │ └── d2e72aae-6d4b-4e0a-9d5e-02d8f828ab9e.png │ │ ├── 87000bbd-ed74-44f0-86bd-d9c2a27979ca │ │ │ └── d2e72aae-6d4b-4e0a-9d5e-02d8f828ab9e.png │ │ ├── 8e15a896-47dd-46f6-b526-7c855188d9e4 │ │ │ └── d2e72aae-6d4b-4e0a-9d5e-02d8f828ab9e.png │ │ ├── bde3e5d3-6640-4f1b-871f-483bb93ec993 │ │ │ └── d2e72aae-6d4b-4e0a-9d5e-02d8f828ab9e.png │ │ ├── e73c0915-9aff-4a72-8d89-e3c04d40bc48 │ │ │ └── d2e72aae-6d4b-4e0a-9d5e-02d8f828ab9e.png │ │ └── eb9829f8-6755-4457-a183-58e573a5f9ef │ │ │ └── d2e72aae-6d4b-4e0a-9d5e-02d8f828ab9e.png │ └── lochzahn_idle.yy ├── lochzahn_jump_up │ ├── 69830041-44d2-403e-a95c-11d1a19fbd46.png │ ├── 82a87c1b-f41f-461f-a5ea-940bac0d6592.png │ ├── layers │ │ ├── 69830041-44d2-403e-a95c-11d1a19fbd46 │ │ │ └── a6a4f135-4044-43fa-9a05-a6675a12cf5d.png │ │ └── 82a87c1b-f41f-461f-a5ea-940bac0d6592 │ │ │ └── c41b5363-c3f1-4edd-9679-a6f2a5d6d22d.png │ └── lochzahn_jump_up.yy ├── lochzahn_run │ ├── 40393d2c-3ad7-49b4-a28e-4df90da800c4.png │ ├── 79bc57fc-4b6d-40b7-a6e4-0fa7f6b51aa4.png │ ├── 9fa169c1-71fd-4f57-8e58-0689e3a17787.png │ ├── a50c6349-254c-4797-a8a1-2b7f77cb3336.png │ ├── b50e0e07-b327-46e4-85c4-683ec7e584e1.png │ ├── ca93c8a7-cdf7-4101-a1f1-dc4b7558bb69.png │ ├── d01e0b79-aa8a-43ac-8174-aefd2b3c1861.png │ ├── e4859d77-1190-4df0-a480-d2162b3c2281.png │ ├── ea3f3945-9413-4b79-aea7-36a19cb9aa7b.png │ ├── layers │ │ ├── 40393d2c-3ad7-49b4-a28e-4df90da800c4 │ │ │ └── 6155f7b5-9757-43ad-b426-2a39da350b06.png │ │ ├── 79bc57fc-4b6d-40b7-a6e4-0fa7f6b51aa4 │ │ │ └── 6155f7b5-9757-43ad-b426-2a39da350b06.png │ │ ├── 9fa169c1-71fd-4f57-8e58-0689e3a17787 │ │ │ └── 6155f7b5-9757-43ad-b426-2a39da350b06.png │ │ ├── a50c6349-254c-4797-a8a1-2b7f77cb3336 │ │ │ └── 6155f7b5-9757-43ad-b426-2a39da350b06.png │ │ ├── b50e0e07-b327-46e4-85c4-683ec7e584e1 │ │ │ └── 6155f7b5-9757-43ad-b426-2a39da350b06.png │ │ ├── ca93c8a7-cdf7-4101-a1f1-dc4b7558bb69 │ │ │ └── 6155f7b5-9757-43ad-b426-2a39da350b06.png │ │ ├── d01e0b79-aa8a-43ac-8174-aefd2b3c1861 │ │ │ └── 10d9fb51-ebe2-4a62-968f-0e596103e088.png │ │ ├── e4859d77-1190-4df0-a480-d2162b3c2281 │ │ │ └── 6155f7b5-9757-43ad-b426-2a39da350b06.png │ │ └── ea3f3945-9413-4b79-aea7-36a19cb9aa7b │ │ │ └── 6155f7b5-9757-43ad-b426-2a39da350b06.png │ └── lochzahn_run.yy ├── moving_platform │ ├── cae5bd62-582f-46d0-9d7b-b68383368002.png │ ├── layers │ │ └── cae5bd62-582f-46d0-9d7b-b68383368002 │ │ │ └── 8be0a2c9-883a-4a97-a722-f31d906276de.png │ └── moving_platform.yy ├── one_way_platform │ ├── 9d8675bb-d627-44d5-8dab-6f618a08ea6f.png │ ├── layers │ │ └── 9d8675bb-d627-44d5-8dab-6f618a08ea6f │ │ │ └── 80d8505a-852b-4999-8518-cf0315a3cbf4.png │ └── one_way_platform.yy ├── palette │ ├── c316e45d-324b-4fe3-9b8b-318603b24c77.png │ ├── layers │ │ └── c316e45d-324b-4fe3-9b8b-318603b24c77 │ │ │ └── d969c6de-0370-4fac-95ae-1f573147e0ec.png │ └── palette.yy ├── pin_image │ ├── 8fcb75bd-c076-4f0e-821d-e3d0c0c4b74d.png │ ├── layers │ │ └── 8fcb75bd-c076-4f0e-821d-e3d0c0c4b74d │ │ │ └── f42814e0-131f-4008-b578-02d37cb13a87.png │ └── pin_image.yy ├── scn1_menu_bg │ ├── a9b9e5f7-2027-4b49-8b27-f495051c81a6.png │ ├── layers │ │ └── a9b9e5f7-2027-4b49-8b27-f495051c81a6 │ │ │ └── fb0abafc-dcc4-4f82-ab58-c7dcd1d0d2d5.png │ └── scn1_menu_bg.yy ├── scn1_menu_gametitle_EN │ ├── ea480140-780c-4d60-a608-75dcd1c581dd.png │ ├── layers │ │ └── ea480140-780c-4d60-a608-75dcd1c581dd │ │ │ ├── caf4db20-77c2-4e64-b02c-d7e68a0ad8da.png │ │ │ └── e80f0128-da58-4baa-977b-853bf2848917.png │ └── scn1_menu_gametitle_EN.yy ├── scroll_bg_cloud_1 │ ├── 07f892ab-8edd-4714-a1c4-70096800ec09.png │ ├── layers │ │ └── 07f892ab-8edd-4714-a1c4-70096800ec09 │ │ │ └── bd3349aa-d037-45bc-86a7-2ab9bb02577f.png │ └── scroll_bg_cloud_1.yy ├── scroll_bg_cloud_2 │ ├── c7fe493d-1cb5-4ae0-ac9c-3632647c1968.png │ ├── layers │ │ └── c7fe493d-1cb5-4ae0-ac9c-3632647c1968 │ │ │ └── fa63b362-e673-449a-9afa-a1731ddba5c4.png │ └── scroll_bg_cloud_2.yy ├── scroll_bg_cloud_3 │ ├── 194c7002-5db1-4d30-ad08-a3bbd470b9a3.png │ ├── layers │ │ └── 194c7002-5db1-4d30-ad08-a3bbd470b9a3 │ │ │ └── 549eb4cd-3c58-499e-a002-ef2285a8c4b9.png │ └── scroll_bg_cloud_3.yy ├── scroll_bg_fg_2 │ ├── 5a37fb63-ab87-456e-ae95-27696cdf069b.png │ ├── layers │ │ └── 5a37fb63-ab87-456e-ae95-27696cdf069b │ │ │ └── f9b80ccb-6431-4c63-91ca-521e67de7e42.png │ └── scroll_bg_fg_2.yy ├── scroll_bg_sky │ ├── 71e79da5-8ef5-4a9a-bc0c-412d6aa4d949.png │ ├── layers │ │ └── 71e79da5-8ef5-4a9a-bc0c-412d6aa4d949 │ │ │ └── fb15f3fa-d066-49b4-b702-d52001c7bf89.png │ └── scroll_bg_sky.yy ├── ship_cutscene │ ├── a4217571-7ac1-4309-b069-d79cc806d95d.png │ ├── layers │ │ └── a4217571-7ac1-4309-b069-d79cc806d95d │ │ │ └── 1f669938-a27b-4b6e-b49a-253a799ec6ca.png │ └── ship_cutscene.yy ├── skull_eye │ ├── a9f7045c-1e85-4d1b-9bce-9d185905c73e.png │ ├── layers │ │ └── a9f7045c-1e85-4d1b-9bce-9d185905c73e │ │ │ └── fa14a7e2-12d7-47bd-98f6-5e32b2965e29.png │ └── skull_eye.yy ├── small_one_way_platform │ ├── c176dce4-3f97-466a-a70e-06d8d6d6714a.png │ ├── layers │ │ └── c176dce4-3f97-466a-a70e-06d8d6d6714a │ │ │ └── f0e2243f-de1b-49ff-a43d-1e90521710d7.png │ └── small_one_way_platform.yy ├── splash_screen_lochzahn_candy_hat │ ├── 06e7171d-5753-44b2-9682-4f7b03db59d6.png │ ├── 30e9baf5-da14-4b0d-ac1d-1fb2c468a789.png │ ├── bc3b4f97-f7a9-4dba-9703-40ed2e601377.png │ ├── layers │ │ ├── 06e7171d-5753-44b2-9682-4f7b03db59d6 │ │ │ └── 85ae331b-9511-47cd-8aba-d9c00974e905.png │ │ ├── 30e9baf5-da14-4b0d-ac1d-1fb2c468a789 │ │ │ └── d7008bd6-7659-4dfc-9aa1-6e75602211e0.png │ │ └── bc3b4f97-f7a9-4dba-9703-40ed2e601377 │ │ │ └── 85ae331b-9511-47cd-8aba-d9c00974e905.png │ └── splash_screen_lochzahn_candy_hat.yy ├── splash_screen_lochzahn_single_scn1 │ ├── 3feda59a-f5a4-49d7-9663-7595033a79ce.png │ ├── layers │ │ └── 3feda59a-f5a4-49d7-9663-7595033a79ce │ │ │ ├── b46796d5-0beb-48e8-b665-0ab75052ac72.png │ │ │ └── c2752817-6171-4d9b-9d10-a8b0a40e2362.png │ └── splash_screen_lochzahn_single_scn1.yy ├── splashscreen_ship_scn1 │ ├── 8772b573-2c79-4241-9c4a-41ba39ee9ac7.png │ ├── layers │ │ └── 8772b573-2c79-4241-9c4a-41ba39ee9ac7 │ │ │ └── 1fce4285-a58f-4f49-ac0c-afada6be3dc7.png │ └── splashscreen_ship_scn1.yy ├── texture_button_character_card │ ├── 4deaec2e-f23e-4cce-9e6d-5b44df96cb3f.png │ ├── layers │ │ └── 4deaec2e-f23e-4cce-9e6d-5b44df96cb3f │ │ │ └── bf97fc77-a6e2-4c81-9309-aa2d51eea672.png │ └── texture_button_character_card.yy ├── tiles_forest │ ├── c390b96b-5fc4-49de-923f-01a12674667e.png │ ├── layers │ │ └── c390b96b-5fc4-49de-923f-01a12674667e │ │ │ └── 8df42ad6-4fe8-4f1d-8666-78a682fa250e.png │ └── tiles_forest.yy ├── tiles_mountain │ ├── cd7ed556-48b9-4bf6-990e-73dc6b387e08.png │ ├── layers │ │ └── cd7ed556-48b9-4bf6-990e-73dc6b387e08 │ │ │ └── 2b45d35c-599c-4be6-b13e-fc58cde4fa10.png │ └── tiles_mountain.yy ├── txt_info │ ├── 49127fde-e37b-47b4-850a-f5a6e4d6badc.png │ ├── layers │ │ └── 49127fde-e37b-47b4-850a-f5a6e4d6badc │ │ │ └── dc017b2b-8b62-4dfb-922b-ca512198324b.png │ └── txt_info.yy ├── wand │ ├── 56486fb8-6457-40b8-a260-627e7da8137a.png │ ├── layers │ │ └── 56486fb8-6457-40b8-a260-627e7da8137a │ │ │ └── 4b851002-152b-4d2f-bb75-b5011b902af1.png │ └── wand.yy ├── yan_static1 │ ├── d169c9b8-0896-4f36-a985-4cf3d26f7b31.png │ ├── layers │ │ └── d169c9b8-0896-4f36-a985-4cf3d26f7b31 │ │ │ └── 191e9408-29ca-4127-b376-d6a3dc1cacc5.png │ └── yan_static1.yy ├── yan_static2 │ ├── 16865e6e-e9d8-478e-8171-b488a4ebc677.png │ ├── layers │ │ └── 16865e6e-e9d8-478e-8171-b488a4ebc677 │ │ │ └── e74f5adb-95f7-44b3-b344-3fafd2d280ef.png │ └── yan_static2.yy └── yankandy │ ├── e30f1f68-4e4b-4ba3-8ba6-a0ca7a1cbf2f.png │ ├── layers │ └── e30f1f68-4e4b-4ba3-8ba6-a0ca7a1cbf2f │ │ └── ad90dd2b-a72b-4051-8ec3-063423d9b19e.png │ └── yankandy.yy └── tilesets ├── TileSetCastleInside ├── TileSetCastleInside.yy └── output_tileset.png ├── TileSetCastleOutside ├── TileSetCastleOutside.yy └── output_tileset.png ├── TileSetForest ├── TileSetForest.yy └── output_tileset.png └── TileSetMountain ├── TileSetMountain.yy └── output_tileset.png /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/datafiles/birds/bird_anim-sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/datafiles/birds/bird_anim-sheet.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/datafiles/birds/bird_anim.png.flags: -------------------------------------------------------------------------------- 1 | gen_mipmaps=false 2 | -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/datafiles/birds/birds.tscn: -------------------------------------------------------------------------------- 1 | [gd_scene load_steps=3 format=1] 2 | 3 | [ext_resource path="res://src/objects/birds/bird_anim-sheet.png" type="Texture" id=1] 4 | 5 | 6 | 7 | 8 | [sub_resource type="ColorRamp" id=1] 9 | 10 | offsets = FloatArray( 0, 0.946771, 1 ) 11 | colors = ColorArray( 1, 1, 1, 1, 1, 1, 1, 0.970332, 1, 1, 1, 0 ) 12 | 13 | [node name="birds" type="Particles2D"] 14 | 15 | transform/pos = Vector2( 25.7671, 249.674 ) 16 | transform/scale = Vector2( 0.895797, 1 ) 17 | config/amount = 19 18 | config/lifetime = 25.552 19 | config/time_scale = 0.6 20 | config/preprocess = 15.0 21 | config/half_extents = Vector2( 600, 1 ) 22 | config/local_space = false 23 | config/explosiveness = 0.543217 24 | config/texture = ExtResource( 1 ) 25 | config/h_frames = 6 26 | params/direction = 90.6651 27 | params/spread = 10.662 28 | params/linear_velocity = 321.115 29 | params/spin_velocity = 0.0 30 | params/orbit_velocity = 0.0 31 | params/gravity_direction = 92.1457 32 | params/gravity_strength = 5.0 33 | params/radial_accel = 0.0 34 | params/tangential_accel = 0.0 35 | params/damping = 0.0 36 | params/initial_angle = 0.0 37 | params/initial_size = 1.0 38 | params/final_size = 1.0 39 | params/hue_variation = 0.0 40 | params/anim_speed_scale = 128.0 41 | params/anim_initial_pos = 0.0 42 | randomness/direction = 0.00276339 43 | randomness/spread = 0.0927317 44 | randomness/initial_size = 0.0043056 45 | randomness/anim_initial_pos = -0.102114 46 | color/color_ramp = SubResource( 1 ) 47 | 48 | 49 | -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/fonts/cahofont/cahofont.old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/fonts/cahofont/cahofont.old.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/fonts/cahofont/cahofont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/fonts/cahofont/cahofont.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/objects/Nagel/Nagel.yy: -------------------------------------------------------------------------------- 1 | { 2 | "$GMObject":"", 3 | "%Name":"Nagel", 4 | "eventList":[ 5 | {"$GMEvent":"v1","%Name":"","collisionObjectId":null,"eventNum":0,"eventType":0,"isDnD":true,"name":"","resourceType":"GMEvent","resourceVersion":"2.0",}, 6 | ], 7 | "managed":true, 8 | "name":"Nagel", 9 | "overriddenProperties":[], 10 | "parent":{ 11 | "name":"YanKandy", 12 | "path":"folders/Sprites/YanKandy.yy", 13 | }, 14 | "parentObjectId":null, 15 | "persistent":false, 16 | "physicsAngularDamping":0.3, 17 | "physicsDensity":0.0, 18 | "physicsFriction":0.8, 19 | "physicsGroup":1, 20 | "physicsKinematic":true, 21 | "physicsLinearDamping":0.3, 22 | "physicsObject":true, 23 | "physicsRestitution":0.8, 24 | "physicsSensor":false, 25 | "physicsShape":0, 26 | "physicsShapePoints":[ 27 | {"x":19.0,"y":52.0,}, 28 | {"x":12.0,"y":52.0,}, 29 | ], 30 | "physicsStartAwake":false, 31 | "properties":[], 32 | "resourceType":"GMObject", 33 | "resourceVersion":"2.0", 34 | "solid":true, 35 | "spriteId":{ 36 | "name":"pin_image", 37 | "path":"sprites/pin_image/pin_image.yy", 38 | }, 39 | "spriteMaskId":null, 40 | "visible":true, 41 | } -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/objects/ObjCastleImage/ObjCastleImage.yy: -------------------------------------------------------------------------------- 1 | { 2 | "$GMObject":"", 3 | "%Name":"ObjCastleImage", 4 | "eventList":[], 5 | "managed":true, 6 | "name":"ObjCastleImage", 7 | "overriddenProperties":[], 8 | "parent":{ 9 | "name":"objects", 10 | "path":"folders/Objekte/objects.yy", 11 | }, 12 | "parentObjectId":null, 13 | "persistent":false, 14 | "physicsAngularDamping":0.1, 15 | "physicsDensity":0.5, 16 | "physicsFriction":0.2, 17 | "physicsGroup":1, 18 | "physicsKinematic":false, 19 | "physicsLinearDamping":0.1, 20 | "physicsObject":false, 21 | "physicsRestitution":0.1, 22 | "physicsSensor":false, 23 | "physicsShape":1, 24 | "physicsShapePoints":[], 25 | "physicsStartAwake":true, 26 | "properties":[], 27 | "resourceType":"GMObject", 28 | "resourceVersion":"2.0", 29 | "solid":false, 30 | "spriteId":{ 31 | "name":"CastleImage", 32 | "path":"sprites/CastleImage/CastleImage.yy", 33 | }, 34 | "spriteMaskId":null, 35 | "visible":true, 36 | } -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/objects/ObjCastleWindow/ObjCastleWindow.yy: -------------------------------------------------------------------------------- 1 | { 2 | "$GMObject":"", 3 | "%Name":"ObjCastleWindow", 4 | "eventList":[], 5 | "managed":true, 6 | "name":"ObjCastleWindow", 7 | "overriddenProperties":[], 8 | "parent":{ 9 | "name":"objects", 10 | "path":"folders/Objekte/objects.yy", 11 | }, 12 | "parentObjectId":null, 13 | "persistent":false, 14 | "physicsAngularDamping":0.1, 15 | "physicsDensity":0.5, 16 | "physicsFriction":0.2, 17 | "physicsGroup":1, 18 | "physicsKinematic":false, 19 | "physicsLinearDamping":0.1, 20 | "physicsObject":false, 21 | "physicsRestitution":0.1, 22 | "physicsSensor":false, 23 | "physicsShape":1, 24 | "physicsShapePoints":[], 25 | "physicsStartAwake":true, 26 | "properties":[], 27 | "resourceType":"GMObject", 28 | "resourceVersion":"2.0", 29 | "solid":false, 30 | "spriteId":{ 31 | "name":"CastleWindow", 32 | "path":"sprites/CastleWindow/CastleWindow.yy", 33 | }, 34 | "spriteMaskId":null, 35 | "visible":true, 36 | } -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/objects/Object4/Object4.yy: -------------------------------------------------------------------------------- 1 | { 2 | "$GMObject":"", 3 | "%Name":"Object4", 4 | "eventList":[], 5 | "managed":true, 6 | "name":"Object4", 7 | "overriddenProperties":[], 8 | "parent":{ 9 | "name":"YanKandy", 10 | "path":"folders/Sprites/YanKandy.yy", 11 | }, 12 | "parentObjectId":null, 13 | "persistent":false, 14 | "physicsAngularDamping":0.1, 15 | "physicsDensity":0.0, 16 | "physicsFriction":0.2, 17 | "physicsGroup":1, 18 | "physicsKinematic":false, 19 | "physicsLinearDamping":0.1, 20 | "physicsObject":false, 21 | "physicsRestitution":0.1, 22 | "physicsSensor":false, 23 | "physicsShape":1, 24 | "physicsShapePoints":[ 25 | {"x":0.0,"y":0.0,}, 26 | {"x":512.0,"y":0.0,}, 27 | {"x":512.0,"y":1024.0,}, 28 | {"x":0.0,"y":1024.0,}, 29 | ], 30 | "physicsStartAwake":true, 31 | "properties":[], 32 | "resourceType":"GMObject", 33 | "resourceVersion":"2.0", 34 | "solid":false, 35 | "spriteId":{ 36 | "name":"yankandy", 37 | "path":"sprites/yankandy/yankandy.yy", 38 | }, 39 | "spriteMaskId":null, 40 | "visible":true, 41 | } -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/objects/btnCloseOverlay/Mouse_4.gml: -------------------------------------------------------------------------------- 1 | /// @DnDAction : YoYo Games.Instances.Set_Instance_Var 2 | /// @DnDVersion : 1 3 | /// @DnDHash : 2B2E7FD5 4 | /// @DnDArgument : "value" "false" 5 | /// @DnDArgument : "instvar" "6" 6 | visible = false; -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/objects/btnCloseOverlay/Mouse_4.gml.dnd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/objects/btnCloseOverlay/btnCloseOverlay.yy: -------------------------------------------------------------------------------- 1 | { 2 | "$GMObject":"", 3 | "%Name":"btnCloseOverlay", 4 | "eventList":[ 5 | {"$GMEvent":"v1","%Name":"","collisionObjectId":null,"eventNum":4,"eventType":6,"isDnD":true,"name":"","resourceType":"GMEvent","resourceVersion":"2.0",}, 6 | ], 7 | "managed":true, 8 | "name":"btnCloseOverlay", 9 | "overriddenProperties":[], 10 | "parent":{ 11 | "name":"Menus", 12 | "path":"folders/Objekte/Menus.yy", 13 | }, 14 | "parentObjectId":null, 15 | "persistent":false, 16 | "physicsAngularDamping":0.1, 17 | "physicsDensity":0.5, 18 | "physicsFriction":0.2, 19 | "physicsGroup":1, 20 | "physicsKinematic":false, 21 | "physicsLinearDamping":0.1, 22 | "physicsObject":false, 23 | "physicsRestitution":0.1, 24 | "physicsSensor":false, 25 | "physicsShape":1, 26 | "physicsShapePoints":[], 27 | "physicsStartAwake":true, 28 | "properties":[], 29 | "resourceType":"GMObject", 30 | "resourceVersion":"2.0", 31 | "solid":false, 32 | "spriteId":{ 33 | "name":"close_button", 34 | "path":"sprites/close_button/close_button.yy", 35 | }, 36 | "spriteMaskId":null, 37 | "visible":true, 38 | } -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/objects/btnMenuBack/Create_0.gml: -------------------------------------------------------------------------------- 1 | /// @description Hier Beschreibung einfügen 2 | // Sie können Ihren Code in diesem Editor schreiben 3 | hovering = false; 4 | clicked = false; 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/objects/btnMenuBack/Draw_0.gml: -------------------------------------------------------------------------------- 1 | /// @description Hier Beschreibung einfügen 2 | // Sie können Ihren Code in diesem Editor schreiben 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/objects/btnMenuBack/Draw_64.gml: -------------------------------------------------------------------------------- 1 | /// @description Hier Beschreibung einfügen 2 | // Sie können Ihren Code in diesem Editor schreiben 3 | draw_self(); 4 | 5 | draw_set_font(cahofont); 6 | draw_set_halign(fa_center); 7 | draw_set_valign(fa_middle); 8 | draw_set_color(c_black); 9 | 10 | draw_text(x, y, button_text); -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/objects/btnMenuBack/Mouse_4.gml: -------------------------------------------------------------------------------- 1 | /// @DnDAction : YoYo Games.Rooms.Previous_Room 2 | /// @DnDVersion : 1 3 | /// @DnDHash : 234599C1 4 | room_goto_previous(); -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/objects/btnMenuBack/Mouse_4.gml.dnd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/objects/btnMenuBack/btnMenuBack.yy: -------------------------------------------------------------------------------- 1 | { 2 | "$GMObject":"", 3 | "%Name":"btnMenuBack", 4 | "eventList":[ 5 | {"$GMEvent":"v1","%Name":"","collisionObjectId":null,"eventNum":0,"eventType":0,"isDnD":false,"name":"","resourceType":"GMEvent","resourceVersion":"2.0",}, 6 | {"$GMEvent":"v1","%Name":"","collisionObjectId":null,"eventNum":0,"eventType":8,"isDnD":false,"name":"","resourceType":"GMEvent","resourceVersion":"2.0",}, 7 | {"$GMEvent":"v1","%Name":"","collisionObjectId":null,"eventNum":64,"eventType":8,"isDnD":false,"name":"","resourceType":"GMEvent","resourceVersion":"2.0",}, 8 | {"$GMEvent":"v1","%Name":"","collisionObjectId":null,"eventNum":4,"eventType":6,"isDnD":true,"name":"","resourceType":"GMEvent","resourceVersion":"2.0",}, 9 | ], 10 | "managed":true, 11 | "name":"btnMenuBack", 12 | "overriddenProperties":[], 13 | "parent":{ 14 | "name":"Menus", 15 | "path":"folders/Objekte/Menus.yy", 16 | }, 17 | "parentObjectId":null, 18 | "persistent":false, 19 | "physicsAngularDamping":0.1, 20 | "physicsDensity":0.5, 21 | "physicsFriction":0.2, 22 | "physicsGroup":1, 23 | "physicsKinematic":false, 24 | "physicsLinearDamping":0.1, 25 | "physicsObject":false, 26 | "physicsRestitution":0.1, 27 | "physicsSensor":false, 28 | "physicsShape":1, 29 | "physicsShapePoints":[], 30 | "physicsStartAwake":true, 31 | "properties":[ 32 | {"$GMObjectProperty":"v1","%Name":"button_text","filters":[],"listItems":[],"multiselect":false,"name":"button_text","rangeEnabled":false,"rangeMax":10.0,"rangeMin":0.0,"resourceType":"GMObjectProperty","resourceVersion":"2.0","value":"\"Start\"","varType":2,}, 33 | ], 34 | "resourceType":"GMObject", 35 | "resourceVersion":"2.0", 36 | "solid":false, 37 | "spriteId":{ 38 | "name":"BtnGeneric", 39 | "path":"sprites/BtnGeneric/BtnGeneric.yy", 40 | }, 41 | "spriteMaskId":null, 42 | "visible":true, 43 | } -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/objects/btnMenuOptions/Create_0.gml: -------------------------------------------------------------------------------- 1 | /// @description Hier Beschreibung einfügen 2 | // Sie können Ihren Code in diesem Editor schreiben 3 | hovering = false; 4 | clicked = false; 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/objects/btnMenuOptions/Draw_0.gml: -------------------------------------------------------------------------------- 1 | /// @description Hier Beschreibung einfügen 2 | // Sie können Ihren Code in diesem Editor schreiben 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/objects/btnMenuOptions/Draw_64.gml: -------------------------------------------------------------------------------- 1 | /// @description Hier Beschreibung einfügen 2 | // Sie können Ihren Code in diesem Editor schreiben 3 | draw_self(); 4 | 5 | draw_set_font(cahofont); 6 | draw_set_halign(fa_center); 7 | draw_set_valign(fa_middle); 8 | draw_set_color(c_black); 9 | 10 | draw_text(x, y, button_text); 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/objects/btnMenuOptions/Mouse_4.gml: -------------------------------------------------------------------------------- 1 | /// @DnDAction : YoYo Games.Rooms.Go_To_Room 2 | /// @DnDVersion : 1 3 | /// @DnDHash : 6D7CB145 4 | /// @DnDArgument : "room" "gui_options" 5 | /// @DnDSaveInfo : "room" "gui_options" 6 | room_goto(gui_options); -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/objects/btnMenuOptions/Mouse_4.gml.dnd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/objects/btnMenuOptions/btnMenuOptions.yy: -------------------------------------------------------------------------------- 1 | { 2 | "$GMObject":"", 3 | "%Name":"btnMenuOptions", 4 | "eventList":[ 5 | {"$GMEvent":"v1","%Name":"","collisionObjectId":null,"eventNum":0,"eventType":0,"isDnD":false,"name":"","resourceType":"GMEvent","resourceVersion":"2.0",}, 6 | {"$GMEvent":"v1","%Name":"","collisionObjectId":null,"eventNum":0,"eventType":8,"isDnD":false,"name":"","resourceType":"GMEvent","resourceVersion":"2.0",}, 7 | {"$GMEvent":"v1","%Name":"","collisionObjectId":null,"eventNum":64,"eventType":8,"isDnD":false,"name":"","resourceType":"GMEvent","resourceVersion":"2.0",}, 8 | {"$GMEvent":"v1","%Name":"","collisionObjectId":null,"eventNum":4,"eventType":6,"isDnD":true,"name":"","resourceType":"GMEvent","resourceVersion":"2.0",}, 9 | ], 10 | "managed":true, 11 | "name":"btnMenuOptions", 12 | "overriddenProperties":[], 13 | "parent":{ 14 | "name":"Menus", 15 | "path":"folders/Objekte/Menus.yy", 16 | }, 17 | "parentObjectId":null, 18 | "persistent":false, 19 | "physicsAngularDamping":0.1, 20 | "physicsDensity":0.5, 21 | "physicsFriction":0.2, 22 | "physicsGroup":1, 23 | "physicsKinematic":false, 24 | "physicsLinearDamping":0.1, 25 | "physicsObject":false, 26 | "physicsRestitution":0.1, 27 | "physicsSensor":false, 28 | "physicsShape":1, 29 | "physicsShapePoints":[], 30 | "physicsStartAwake":true, 31 | "properties":[ 32 | {"$GMObjectProperty":"v1","%Name":"button_text","filters":[],"listItems":[],"multiselect":false,"name":"button_text","rangeEnabled":false,"rangeMax":10.0,"rangeMin":0.0,"resourceType":"GMObjectProperty","resourceVersion":"2.0","value":"\"Options / Help\"","varType":2,}, 33 | ], 34 | "resourceType":"GMObject", 35 | "resourceVersion":"2.0", 36 | "solid":false, 37 | "spriteId":{ 38 | "name":"BtnGeneric", 39 | "path":"sprites/BtnGeneric/BtnGeneric.yy", 40 | }, 41 | "spriteMaskId":null, 42 | "visible":true, 43 | } -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/objects/btnMenuStart/Create_0.gml: -------------------------------------------------------------------------------- 1 | /// @description Hier Beschreibung einfügen 2 | // Sie können Ihren Code in diesem Editor schreiben 3 | hovering = false; 4 | clicked = false; 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/objects/btnMenuStart/Draw_0.gml: -------------------------------------------------------------------------------- 1 | /// @description Hier Beschreibung einfügen 2 | // Sie können Ihren Code in diesem Editor schreiben 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/objects/btnMenuStart/Draw_64.gml: -------------------------------------------------------------------------------- 1 | /// @description Hier Beschreibung einfügen 2 | // Sie können Ihren Code in diesem Editor schreiben 3 | draw_self(); 4 | 5 | draw_set_font(cahofont); 6 | draw_set_halign(fa_center); 7 | draw_set_valign(fa_middle); 8 | draw_set_color(c_black); 9 | 10 | draw_text(x, y, button_text); -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/objects/btnMenuStart/Mouse_4.gml: -------------------------------------------------------------------------------- 1 | /// @DnDAction : YoYo Games.Rooms.Go_To_Room 2 | /// @DnDVersion : 1 3 | /// @DnDHash : 2DC35BAB 4 | /// @DnDArgument : "room" "lvl1_forest" 5 | /// @DnDSaveInfo : "room" "lvl1_forest" 6 | room_goto(lvl1_forest); -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/objects/btnMenuStart/Mouse_4.gml.dnd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/objects/btnMenuStart/btnMenuStart.yy: -------------------------------------------------------------------------------- 1 | { 2 | "$GMObject":"", 3 | "%Name":"btnMenuStart", 4 | "eventList":[ 5 | {"$GMEvent":"v1","%Name":"","collisionObjectId":null,"eventNum":0,"eventType":0,"isDnD":false,"name":"","resourceType":"GMEvent","resourceVersion":"2.0",}, 6 | {"$GMEvent":"v1","%Name":"","collisionObjectId":null,"eventNum":0,"eventType":8,"isDnD":false,"name":"","resourceType":"GMEvent","resourceVersion":"2.0",}, 7 | {"$GMEvent":"v1","%Name":"","collisionObjectId":null,"eventNum":64,"eventType":8,"isDnD":false,"name":"","resourceType":"GMEvent","resourceVersion":"2.0",}, 8 | {"$GMEvent":"v1","%Name":"","collisionObjectId":null,"eventNum":4,"eventType":6,"isDnD":true,"name":"","resourceType":"GMEvent","resourceVersion":"2.0",}, 9 | ], 10 | "managed":true, 11 | "name":"btnMenuStart", 12 | "overriddenProperties":[], 13 | "parent":{ 14 | "name":"Menus", 15 | "path":"folders/Objekte/Menus.yy", 16 | }, 17 | "parentObjectId":null, 18 | "persistent":false, 19 | "physicsAngularDamping":0.1, 20 | "physicsDensity":0.5, 21 | "physicsFriction":0.2, 22 | "physicsGroup":1, 23 | "physicsKinematic":false, 24 | "physicsLinearDamping":0.1, 25 | "physicsObject":false, 26 | "physicsRestitution":0.1, 27 | "physicsSensor":false, 28 | "physicsShape":1, 29 | "physicsShapePoints":[], 30 | "physicsStartAwake":true, 31 | "properties":[ 32 | {"$GMObjectProperty":"v1","%Name":"button_text","filters":[],"listItems":[],"multiselect":false,"name":"button_text","rangeEnabled":false,"rangeMax":10.0,"rangeMin":0.0,"resourceType":"GMObjectProperty","resourceVersion":"2.0","value":"\"Start\"","varType":2,}, 33 | ], 34 | "resourceType":"GMObject", 35 | "resourceVersion":"2.0", 36 | "solid":false, 37 | "spriteId":{ 38 | "name":"BtnGeneric", 39 | "path":"sprites/BtnGeneric/BtnGeneric.yy", 40 | }, 41 | "spriteMaskId":null, 42 | "visible":true, 43 | } -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/objects/obj_moving_platform/obj_moving_platform.yy: -------------------------------------------------------------------------------- 1 | { 2 | "$GMObject":"", 3 | "%Name":"obj_moving_platform", 4 | "eventList":[], 5 | "managed":true, 6 | "name":"obj_moving_platform", 7 | "overriddenProperties":[], 8 | "parent":{ 9 | "name":"platforms", 10 | "path":"folders/Objekte/objects/platforms.yy", 11 | }, 12 | "parentObjectId":null, 13 | "persistent":false, 14 | "physicsAngularDamping":0.1, 15 | "physicsDensity":0.5, 16 | "physicsFriction":0.2, 17 | "physicsGroup":1, 18 | "physicsKinematic":false, 19 | "physicsLinearDamping":0.1, 20 | "physicsObject":false, 21 | "physicsRestitution":0.1, 22 | "physicsSensor":false, 23 | "physicsShape":1, 24 | "physicsShapePoints":[], 25 | "physicsStartAwake":true, 26 | "properties":[], 27 | "resourceType":"GMObject", 28 | "resourceVersion":"2.0", 29 | "solid":false, 30 | "spriteId":null, 31 | "spriteMaskId":null, 32 | "visible":true, 33 | } -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/objects/obj_player/obj_player.yy: -------------------------------------------------------------------------------- 1 | { 2 | "$GMObject":"", 3 | "%Name":"obj_player", 4 | "eventList":[ 5 | {"$GMEvent":"v1","%Name":"","collisionObjectId":null,"eventNum":39,"eventType":9,"isDnD":true,"name":"","resourceType":"GMEvent","resourceVersion":"2.0",}, 6 | ], 7 | "managed":true, 8 | "name":"obj_player", 9 | "overriddenProperties":[], 10 | "parent":{ 11 | "name":"Actors", 12 | "path":"folders/Objekte/Actors.yy", 13 | }, 14 | "parentObjectId":null, 15 | "persistent":false, 16 | "physicsAngularDamping":0.1, 17 | "physicsDensity":0.5, 18 | "physicsFriction":0.2, 19 | "physicsGroup":1, 20 | "physicsKinematic":false, 21 | "physicsLinearDamping":0.1, 22 | "physicsObject":true, 23 | "physicsRestitution":0.1, 24 | "physicsSensor":false, 25 | "physicsShape":1, 26 | "physicsShapePoints":[ 27 | {"x":0.0,"y":0.0,}, 28 | {"x":64.0,"y":0.0,}, 29 | {"x":64.0,"y":64.0,}, 30 | {"x":0.0,"y":64.0,}, 31 | ], 32 | "physicsStartAwake":true, 33 | "properties":[], 34 | "resourceType":"GMObject", 35 | "resourceVersion":"2.0", 36 | "solid":false, 37 | "spriteId":{ 38 | "name":"lochzahn_idle", 39 | "path":"sprites/lochzahn_idle/lochzahn_idle.yy", 40 | }, 41 | "spriteMaskId":null, 42 | "visible":true, 43 | } -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/objects/pille/pille.yy: -------------------------------------------------------------------------------- 1 | { 2 | "$GMObject":"", 3 | "%Name":"pille", 4 | "eventList":[ 5 | {"$GMEvent":"v1","%Name":"","eventNum":0,"eventType":4,"isDnD":true,"name":"","resourceType":"GMEvent","resourceVersion":"2.0",}, 6 | ], 7 | "managed":true, 8 | "name":"pille", 9 | "overriddenProperties":[], 10 | "parent":{ 11 | "name":"YanKandy", 12 | "path":"folders/Sprites/YanKandy.yy", 13 | }, 14 | "parentObjectId":null, 15 | "persistent":false, 16 | "physicsAngularDamping":0.1, 17 | "physicsDensity":3.0, 18 | "physicsFriction":0.2, 19 | "physicsGroup":1, 20 | "physicsKinematic":false, 21 | "physicsLinearDamping":0.1, 22 | "physicsObject":true, 23 | "physicsRestitution":0.1, 24 | "physicsSensor":false, 25 | "physicsShape":2, 26 | "physicsShapePoints":[ 27 | {"x":24.0,"y":59.0,}, 28 | {"x":11.0,"y":49.0,}, 29 | {"x":9.333298,"y":32.198586,}, 30 | {"x":28.0,"y":4.0,}, 31 | {"x":37.517693,"y":3.425539,}, 32 | {"x":51.02127,"y":24.21986,}, 33 | {"x":54.0,"y":45.0,}, 34 | {"x":46.0851,"y":56.40426,}, 35 | ], 36 | "physicsStartAwake":true, 37 | "properties":[], 38 | "resourceType":"GMObject", 39 | "resourceVersion":"2.0", 40 | "solid":false, 41 | "spriteId":{ 42 | "name":"candy_egg_image", 43 | "path":"sprites/candy_egg_image/candy_egg_image.yy", 44 | }, 45 | "spriteMaskId":null, 46 | "visible":true, 47 | } -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/objects/player_shot/player_shot.yy: -------------------------------------------------------------------------------- 1 | { 2 | "$GMObject":"", 3 | "%Name":"player_shot", 4 | "eventList":[], 5 | "managed":true, 6 | "name":"player_shot", 7 | "overriddenProperties":[], 8 | "parent":{ 9 | "name":"Actors", 10 | "path":"folders/Objekte/Actors.yy", 11 | }, 12 | "parentObjectId":null, 13 | "persistent":false, 14 | "physicsAngularDamping":0.1, 15 | "physicsDensity":0.5, 16 | "physicsFriction":0.2, 17 | "physicsGroup":1, 18 | "physicsKinematic":false, 19 | "physicsLinearDamping":0.1, 20 | "physicsObject":false, 21 | "physicsRestitution":0.1, 22 | "physicsSensor":false, 23 | "physicsShape":1, 24 | "physicsShapePoints":[], 25 | "physicsStartAwake":true, 26 | "properties":[], 27 | "resourceType":"GMObject", 28 | "resourceVersion":"2.0", 29 | "solid":false, 30 | "spriteId":null, 31 | "spriteMaskId":null, 32 | "visible":true, 33 | } -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/objects/solidwand/solidwand.yy: -------------------------------------------------------------------------------- 1 | { 2 | "$GMObject":"", 3 | "%Name":"solidwand", 4 | "eventList":[], 5 | "managed":true, 6 | "name":"solidwand", 7 | "overriddenProperties":[], 8 | "parent":{ 9 | "name":"YanKandy", 10 | "path":"folders/Sprites/YanKandy.yy", 11 | }, 12 | "parentObjectId":null, 13 | "persistent":false, 14 | "physicsAngularDamping":0.7, 15 | "physicsDensity":0.0, 16 | "physicsFriction":0.2, 17 | "physicsGroup":1, 18 | "physicsKinematic":true, 19 | "physicsLinearDamping":0.7, 20 | "physicsObject":true, 21 | "physicsRestitution":0.4, 22 | "physicsSensor":false, 23 | "physicsShape":1, 24 | "physicsShapePoints":[ 25 | {"x":0.0,"y":0.0,}, 26 | {"x":64.0,"y":0.0,}, 27 | {"x":64.0,"y":64.0,}, 28 | {"x":0.0,"y":64.0,}, 29 | ], 30 | "physicsStartAwake":true, 31 | "properties":[], 32 | "resourceType":"GMObject", 33 | "resourceVersion":"2.0", 34 | "solid":true, 35 | "spriteId":{ 36 | "name":"wand", 37 | "path":"sprites/wand/wand.yy", 38 | }, 39 | "spriteMaskId":null, 40 | "visible":false, 41 | } -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/options/linux/options_linux.yy: -------------------------------------------------------------------------------- 1 | { 2 | "$GMLinuxOptions":"", 3 | "%Name":"Linux", 4 | "name":"Linux", 5 | "option_linux_allow_fullscreen":false, 6 | "option_linux_disable_sandbox":false, 7 | "option_linux_display_cursor":true, 8 | "option_linux_display_name":"Created with GameMaker", 9 | "option_linux_display_splash":false, 10 | "option_linux_enable_steam":false, 11 | "option_linux_homepage":"http://www.yoyogames.com", 12 | "option_linux_icon":"${base_options_dir}/linux/icons/64.png", 13 | "option_linux_interpolate_pixels":true, 14 | "option_linux_long_desc":"", 15 | "option_linux_maintainer_email":"", 16 | "option_linux_resize_window":false, 17 | "option_linux_scale":0, 18 | "option_linux_short_desc":"", 19 | "option_linux_splash_screen":"${options_dir}/linux/splash/splash.png", 20 | "option_linux_start_fullscreen":false, 21 | "option_linux_sync":false, 22 | "option_linux_texture_page":"2048x2048", 23 | "option_linux_version":"1.0.0.0", 24 | "resourceType":"GMLinuxOptions", 25 | "resourceVersion":"2.0", 26 | } -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/options/linux/splash/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/options/linux/splash/splash.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/options/mac/options_mac.yy: -------------------------------------------------------------------------------- 1 | { 2 | "$GMMacOptions":"", 3 | "%Name":"macOS", 4 | "name":"macOS", 5 | "option_mac_allow_fullscreen":false, 6 | "option_mac_allow_incoming_network":false, 7 | "option_mac_allow_outgoing_network":false, 8 | "option_mac_apple_sign_in":false, 9 | "option_mac_app_category":"Games", 10 | "option_mac_app_id":"com.company.game", 11 | "option_mac_arm64":true, 12 | "option_mac_build_app_store":false, 13 | "option_mac_build_number":0, 14 | "option_mac_copyright":"", 15 | "option_mac_disable_sandbox":false, 16 | "option_mac_display_cursor":true, 17 | "option_mac_display_name":"Created with GameMaker", 18 | "option_mac_enable_retina":false, 19 | "option_mac_enable_steam":false, 20 | "option_mac_icon_png":"${base_options_dir}/mac/icons/1024.png", 21 | "option_mac_installer_background_png":"${base_options_dir}/mac/splash/installer_background.png", 22 | "option_mac_interpolate_pixels":true, 23 | "option_mac_menu_dock":false, 24 | "option_mac_min_version":"10.10", 25 | "option_mac_output_dir":"~/gamemakerstudio2", 26 | "option_mac_resize_window":false, 27 | "option_mac_scale":0, 28 | "option_mac_signing_identity":"Developer ID Application:", 29 | "option_mac_splash_png":"${options_dir}/mac/splash/splash.png", 30 | "option_mac_start_fullscreen":false, 31 | "option_mac_team_id":"", 32 | "option_mac_texture_page":"2048x2048", 33 | "option_mac_version":"1.0.0.0", 34 | "option_mac_vsync":false, 35 | "option_mac_x86_64":true, 36 | "resourceType":"GMMacOptions", 37 | "resourceVersion":"2.0", 38 | } -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/options/mac/splash/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/options/mac/splash/splash.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/options/main/options_main.yy: -------------------------------------------------------------------------------- 1 | { 2 | "$GMMainOptions":"v3", 3 | "%Name":"Main", 4 | "name":"Main", 5 | "option_audio_error_behaviour":true, 6 | "option_author":"", 7 | "option_collision_compatibility":false, 8 | "option_copy_on_write_enabled":false, 9 | "option_draw_colour":4294967295, 10 | "option_gameguid":"c3a266bd-efd3-4dff-82e1-52ead0709c6b", 11 | "option_gameid":"0", 12 | "option_game_speed":60, 13 | "option_legacy_json_parsing":true, 14 | "option_legacy_number_conversion":true, 15 | "option_legacy_other_behaviour":true, 16 | "option_mips_for_3d_textures":false, 17 | "option_remove_unused_assets":false, 18 | "option_sci_usesci":false, 19 | "option_spine_licence":false, 20 | "option_steam_app_id":"0", 21 | "option_template_description":null, 22 | "option_template_icon":"${base_options_dir}/main/template_icon.png", 23 | "option_template_image":"${options_dir}/main/template_image.png", 24 | "option_window_colour":255, 25 | "resourceType":"GMMainOptions", 26 | "resourceVersion":"2.0", 27 | } -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/options/main/template_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/options/main/template_image.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/options/operagx/options_operagx.yy: -------------------------------------------------------------------------------- 1 | { 2 | "$GMOperaGXOptions":"", 3 | "%Name":"operagx", 4 | "name":"operagx", 5 | "option_operagx_display_cursor":true, 6 | "option_operagx_editUrl":"https://create.gx.games/game/1ec1dc99-baa5-4093-815e-64f459c7d538/edit", 7 | "option_operagx_game_name":"Captain Holetooth", 8 | "option_operagx_guid":"1ec1dc99-baa5-4093-815e-64f459c7d538", 9 | "option_operagx_internalShareUrl":"", 10 | "option_operagx_interpolate_pixels":true, 11 | "option_operagx_mod_editUrl":"", 12 | "option_operagx_mod_game_name":"${project_name}", 13 | "option_operagx_mod_guid":"", 14 | "option_operagx_mod_internalShareUrl":"", 15 | "option_operagx_mod_next_version":"1.0.0.0", 16 | "option_operagx_mod_publicShareUrl":"", 17 | "option_operagx_mod_team_id":"", 18 | "option_operagx_mod_team_name":"", 19 | "option_operagx_mod_version":"1.0.0.0", 20 | "option_operagx_next_version":"1.0.0.2", 21 | "option_operagx_publicShareUrl":"", 22 | "option_operagx_scale":0, 23 | "option_operagx_team_id":"b8c1ee0d-9b79-43f8-b663-cb9adc8800a0", 24 | "option_operagx_team_name":"Atombender studio", 25 | "option_operagx_texture_page":"2048x2048", 26 | "option_operagx_version":"1.0.0.1", 27 | "resourceType":"GMOperaGXOptions", 28 | "resourceVersion":"2.0", 29 | } -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/options/windows/installer/finished.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/options/windows/installer/finished.bmp -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/options/windows/installer/header.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/options/windows/installer/header.bmp -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/options/windows/options_windows.yy: -------------------------------------------------------------------------------- 1 | { 2 | "$GMWindowsOptions":"", 3 | "%Name":"Windows", 4 | "name":"Windows", 5 | "option_windows_allow_fullscreen_switching":false, 6 | "option_windows_borderless":false, 7 | "option_windows_company_info":"YoYo Games Ltd", 8 | "option_windows_copyright_info":"", 9 | "option_windows_copy_exe_to_dest":false, 10 | "option_windows_description_info":"A GameMaker Game", 11 | "option_windows_disable_sandbox":false, 12 | "option_windows_display_cursor":true, 13 | "option_windows_display_name":"Captain Holetooth", 14 | "option_windows_enable_steam":false, 15 | "option_windows_executable_name":"${project_name}.exe", 16 | "option_windows_icon":"${base_options_dir}/windows/icons/icon.ico", 17 | "option_windows_installer_finished":"${options_dir}/windows/installer/finished.bmp", 18 | "option_windows_installer_header":"${options_dir}/windows/installer/header.bmp", 19 | "option_windows_interpolate_pixels":false, 20 | "option_windows_license":"${base_options_dir}/windows/installer/license.txt", 21 | "option_windows_nsis_file":"${base_options_dir}/windows/installer/nsis_script.nsi", 22 | "option_windows_product_info":"Created with GameMaker", 23 | "option_windows_resize_window":false, 24 | "option_windows_save_location":0, 25 | "option_windows_scale":0, 26 | "option_windows_sleep_margin":10, 27 | "option_windows_splash_screen":"${options_dir}/windows/splash/splash.png", 28 | "option_windows_start_fullscreen":false, 29 | "option_windows_steam_use_alternative_launcher":false, 30 | "option_windows_texture_page":"2048x2048", 31 | "option_windows_use_splash":false, 32 | "option_windows_version":"1.0.0.0", 33 | "option_windows_vsync":false, 34 | "resourceType":"GMWindowsOptions", 35 | "resourceVersion":"2.0", 36 | } -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/options/windows/splash/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/options/windows/splash/splash.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/rooms/gui_mainmenu/InstanceCreationCode_inst_3C6AAD45.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/rooms/gui_mainmenu/InstanceCreationCode_inst_3C6AAD45.gml -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/rooms/gui_mainmenu/InstanceCreationCode_inst_3C6AAD45.gml.dnd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/rooms/gui_mainmenu/RoomCreationCode.gml: -------------------------------------------------------------------------------- 1 | /// @DnDAction : YoYo Games.Audio.Play_Audio 2 | /// @DnDVersion : 1.1 3 | /// @DnDHash : 2D275B34 4 | /// @DnDArgument : "soundid" "MainMenuMusic" 5 | /// @DnDArgument : "loop" "1" 6 | /// @DnDSaveInfo : "soundid" "MainMenuMusic" 7 | audio_play_sound(MainMenuMusic, 0, 1, 1.0, undefined, 1.0); -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/rooms/gui_mainmenu/RoomCreationCode.gml.dnd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/rooms/gui_options/InstanceCreationCode_inst_3C6AAD45.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/rooms/gui_options/InstanceCreationCode_inst_3C6AAD45.gml -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/rooms/gui_options/InstanceCreationCode_inst_3C6AAD45.gml.dnd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/rooms/gui_options/InstanceCreationCode_inst_3C6AAD45_1.gml.dnd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/rooms/gui_options/RoomCreationCode.gml: -------------------------------------------------------------------------------- 1 | /// @DnDAction : YoYo Games.Audio.Play_Audio 2 | /// @DnDVersion : 1.1 3 | /// @DnDHash : 2D275B34 4 | /// @DnDArgument : "soundid" "MainMenuMusic" 5 | /// @DnDArgument : "loop" "1" 6 | /// @DnDSaveInfo : "soundid" "MainMenuMusic" 7 | audio_play_sound(MainMenuMusic, 0, 1, 1.0, undefined, 1.0); -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/rooms/gui_options/RoomCreationCode.gml.dnd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/rooms/lvl1_forest/InstanceCreationCode_inst_2803AC7D.gml.dnd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/rooms/lvl1_forest/InstanceCreationCode_inst_4E80E0E0.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/rooms/lvl1_forest/InstanceCreationCode_inst_4E80E0E0.gml -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/rooms/lvl1_forest/InstanceCreationCode_inst_4E80E0E0.gml.dnd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/rooms/lvl1_forest/RoomCreationCode.gml: -------------------------------------------------------------------------------- 1 | /// @DnDAction : YoYo Games.Audio.If_Audio_Playing 2 | /// @DnDVersion : 1 3 | /// @DnDHash : 4F6D308A 4 | /// @DnDArgument : "soundid" "MainMenuMusic" 5 | /// @DnDSaveInfo : "soundid" "MainMenuMusic" 6 | var l4F6D308A_0 = MainMenuMusic; 7 | if (audio_is_playing(l4F6D308A_0)) 8 | { 9 | 10 | } 11 | 12 | /// @DnDAction : YoYo Games.Audio.Stop_Audio 13 | /// @DnDVersion : 1 14 | /// @DnDHash : 05EE2A21 15 | /// @DnDArgument : "soundid" "MainMenuMusic" 16 | /// @DnDSaveInfo : "soundid" "MainMenuMusic" 17 | audio_stop_sound(MainMenuMusic); 18 | 19 | /// @DnDAction : YoYo Games.Audio.Play_Audio 20 | /// @DnDVersion : 1.1 21 | /// @DnDHash : 6C8CDB71 22 | /// @DnDArgument : "soundid" "froglegs" 23 | /// @DnDArgument : "loop" "1" 24 | /// @DnDSaveInfo : "soundid" "froglegs" 25 | audio_play_sound(froglegs, 0, 1, 1.0, undefined, 1.0); -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/rooms/lvl1_forest/RoomCreationCode.gml.dnd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/rooms/lvl2_mountains/InstanceCreationCode_inst_4E80E0E0.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/rooms/lvl2_mountains/InstanceCreationCode_inst_4E80E0E0.gml -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/rooms/lvl2_mountains/InstanceCreationCode_inst_4E80E0E0.gml.dnd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/rooms/lvl2_mountains/RoomCreationCode.gml: -------------------------------------------------------------------------------- 1 | audio_play_sound(froglegs, 0, 1, 1.0, undefined, 1.0); -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/rooms/lvl3_castle/InstanceCreationCode_inst_4E80E0E0.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/rooms/lvl3_castle/InstanceCreationCode_inst_4E80E0E0.gml -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/rooms/lvl3_castle/InstanceCreationCode_inst_4E80E0E0.gml.dnd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/rooms/lvl3_castle/RoomCreationCode.gml: -------------------------------------------------------------------------------- 1 | audio_play_sound(froglegs, 0, 1, 1.0, undefined, 1.0); -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/rooms/lvl3_castle_inside/InstanceCreationCode_inst_4E80E0E0.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/rooms/lvl3_castle_inside/InstanceCreationCode_inst_4E80E0E0.gml -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/rooms/lvl3_castle_inside/InstanceCreationCode_inst_4E80E0E0.gml.dnd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/rooms/lvl3_castle_inside/RoomCreationCode.gml: -------------------------------------------------------------------------------- 1 | audio_play_sound(froglegs, 0, 1, 1.0, undefined, 1.0); -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/rooms/minigame_yankandy/RoomCreationCode.gml: -------------------------------------------------------------------------------- 1 | if keyboard_check_pressed(vk_anykey) 2 | 3 | { 4 | room_restart(); 5 | } -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sequences/Cutscene/Cutscene.yy: -------------------------------------------------------------------------------- 1 | { 2 | "$GMSequence":"", 3 | "%Name":"Cutscene", 4 | "autoRecord":true, 5 | "backdropHeight":768, 6 | "backdropImageOpacity":0.5, 7 | "backdropImagePath":"", 8 | "backdropWidth":1366, 9 | "backdropXOffset":0.0, 10 | "backdropYOffset":0.0, 11 | "events":{ 12 | "$KeyframeStore":"", 13 | "Keyframes":[], 14 | "resourceType":"KeyframeStore", 15 | "resourceVersion":"2.0", 16 | }, 17 | "eventStubScript":null, 18 | "eventToFunction":{}, 19 | "length":60.0, 20 | "lockOrigin":false, 21 | "moments":{ 22 | "$KeyframeStore":"", 23 | "Keyframes":[], 24 | "resourceType":"KeyframeStore", 25 | "resourceVersion":"2.0", 26 | }, 27 | "name":"Cutscene", 28 | "parent":{ 29 | "name":"Sequenzen", 30 | "path":"folders/Sequenzen.yy", 31 | }, 32 | "playback":0, 33 | "playbackSpeed":60.0, 34 | "playbackSpeedType":0, 35 | "resourceType":"GMSequence", 36 | "resourceVersion":"2.0", 37 | "showBackdrop":true, 38 | "showBackdropImage":false, 39 | "spriteId":null, 40 | "timeUnits":1, 41 | "tracks":[], 42 | "visibleRange":null, 43 | "volume":1.0, 44 | "xorigin":0, 45 | "yorigin":0, 46 | } -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sounds/MainMenuMusic/MainMenuMusic.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sounds/MainMenuMusic/MainMenuMusic.ogg -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sounds/MainMenuMusic/MainMenuMusic.yy: -------------------------------------------------------------------------------- 1 | { 2 | "$GMSound":"", 3 | "%Name":"MainMenuMusic", 4 | "audioGroupId":{ 5 | "name":"audiogroup_default", 6 | "path":"audiogroups/audiogroup_default", 7 | }, 8 | "bitDepth":1, 9 | "bitRate":128, 10 | "compression":0, 11 | "conversionMode":0, 12 | "duration":134.83406, 13 | "name":"MainMenuMusic", 14 | "parent":{ 15 | "name":"Music", 16 | "path":"folders/Sounds/Music.yy", 17 | }, 18 | "preload":false, 19 | "resourceType":"GMSound", 20 | "resourceVersion":"2.0", 21 | "sampleRate":44100, 22 | "soundFile":"MainMenuMusic.ogg", 23 | "type":0, 24 | "volume":1.0, 25 | } -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sounds/Music1/Music1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sounds/Music1/Music1.ogg -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sounds/Music1/Music1.yy: -------------------------------------------------------------------------------- 1 | { 2 | "$GMSound":"", 3 | "%Name":"Music1", 4 | "audioGroupId":{ 5 | "name":"audiogroup_default", 6 | "path":"audiogroups/audiogroup_default", 7 | }, 8 | "bitDepth":1, 9 | "bitRate":128, 10 | "compression":0, 11 | "conversionMode":0, 12 | "duration":191.8829, 13 | "name":"Music1", 14 | "parent":{ 15 | "name":"Music", 16 | "path":"folders/Sounds/Music.yy", 17 | }, 18 | "preload":false, 19 | "resourceType":"GMSound", 20 | "resourceVersion":"2.0", 21 | "sampleRate":44100, 22 | "soundFile":"Music1.ogg", 23 | "type":0, 24 | "volume":1.0, 25 | } -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sounds/Yankandy_music/Yankandy_music.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sounds/Yankandy_music/Yankandy_music.ogg -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sounds/Yankandy_music/Yankandy_music.yy: -------------------------------------------------------------------------------- 1 | { 2 | "$GMSound":"", 3 | "%Name":"Yankandy_music", 4 | "audioGroupId":{ 5 | "name":"audiogroup_default", 6 | "path":"audiogroups/audiogroup_default", 7 | }, 8 | "bitDepth":1, 9 | "bitRate":128, 10 | "compression":0, 11 | "conversionMode":0, 12 | "duration":168.9796, 13 | "name":"Yankandy_music", 14 | "parent":{ 15 | "name":"Music", 16 | "path":"folders/Sounds/Music.yy", 17 | }, 18 | "preload":false, 19 | "resourceType":"GMSound", 20 | "resourceVersion":"2.0", 21 | "sampleRate":44100, 22 | "soundFile":"Yankandy_music.ogg", 23 | "type":0, 24 | "volume":1.0, 25 | } -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sounds/froglegs/froglegs.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sounds/froglegs/froglegs.ogg -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sounds/froglegs/froglegs.yy: -------------------------------------------------------------------------------- 1 | { 2 | "$GMSound":"", 3 | "%Name":"froglegs", 4 | "audioGroupId":{ 5 | "name":"audiogroup_default", 6 | "path":"audiogroups/audiogroup_default", 7 | }, 8 | "bitDepth":1, 9 | "bitRate":128, 10 | "compression":0, 11 | "conversionMode":0, 12 | "duration":147.2, 13 | "name":"froglegs", 14 | "parent":{ 15 | "name":"Music", 16 | "path":"folders/Sounds/Music.yy", 17 | }, 18 | "preload":false, 19 | "resourceType":"GMSound", 20 | "resourceVersion":"2.0", 21 | "sampleRate":44100, 22 | "soundFile":"froglegs.ogg", 23 | "type":0, 24 | "volume":1.0, 25 | } -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sounds/scn2_comic_music/scn2_comic_music.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sounds/scn2_comic_music/scn2_comic_music.ogg -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sounds/scn2_comic_music/scn2_comic_music.yy: -------------------------------------------------------------------------------- 1 | { 2 | "$GMSound":"", 3 | "%Name":"scn2_comic_music", 4 | "audioGroupId":{ 5 | "name":"audiogroup_default", 6 | "path":"audiogroups/audiogroup_default", 7 | }, 8 | "bitDepth":1, 9 | "bitRate":128, 10 | "compression":0, 11 | "conversionMode":0, 12 | "duration":183.60269, 13 | "name":"scn2_comic_music", 14 | "parent":{ 15 | "name":"Music", 16 | "path":"folders/Sounds/Music.yy", 17 | }, 18 | "preload":false, 19 | "resourceType":"GMSound", 20 | "resourceVersion":"2.0", 21 | "sampleRate":44100, 22 | "soundFile":"scn2_comic_music.ogg", 23 | "type":0, 24 | "volume":1.0, 25 | } -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sounds/sndCoin/sndCoin.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sounds/sndCoin/sndCoin.wav -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sounds/sndCoin/sndCoin.yy: -------------------------------------------------------------------------------- 1 | { 2 | "$GMSound":"", 3 | "%Name":"sndCoin", 4 | "audioGroupId":{ 5 | "name":"audiogroup_default", 6 | "path":"audiogroups/audiogroup_default", 7 | }, 8 | "bitDepth":1, 9 | "bitRate":128, 10 | "compression":0, 11 | "conversionMode":0, 12 | "duration":0.36229, 13 | "name":"sndCoin", 14 | "parent":{ 15 | "name":"Sounds", 16 | "path":"folders/Sounds/Sounds.yy", 17 | }, 18 | "preload":false, 19 | "resourceType":"GMSound", 20 | "resourceVersion":"2.0", 21 | "sampleRate":44100, 22 | "soundFile":"sndCoin.wav", 23 | "type":0, 24 | "volume":1.0, 25 | } -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sounds/sndWindloop/sndWindloop.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sounds/sndWindloop/sndWindloop.ogg -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sounds/sndWindloop/sndWindloop.yy: -------------------------------------------------------------------------------- 1 | { 2 | "$GMSound":"", 3 | "%Name":"sndWindloop", 4 | "audioGroupId":{ 5 | "name":"audiogroup_default", 6 | "path":"audiogroups/audiogroup_default", 7 | }, 8 | "bitDepth":1, 9 | "bitRate":128, 10 | "compression":0, 11 | "conversionMode":0, 12 | "duration":1.468277, 13 | "name":"sndWindloop", 14 | "parent":{ 15 | "name":"Sounds", 16 | "path":"folders/Sounds/Sounds.yy", 17 | }, 18 | "preload":false, 19 | "resourceType":"GMSound", 20 | "resourceVersion":"2.0", 21 | "sampleRate":44100, 22 | "soundFile":"sndWindloop.ogg", 23 | "type":0, 24 | "volume":1.0, 25 | } -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/BtnGeneric/470bcccd-8c52-4531-9f06-5d6d73332222.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/BtnGeneric/470bcccd-8c52-4531-9f06-5d6d73332222.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/BtnGeneric/layers/470bcccd-8c52-4531-9f06-5d6d73332222/c45b160d-bd02-46c7-9b4c-113adbf037e8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/BtnGeneric/layers/470bcccd-8c52-4531-9f06-5d6d73332222/c45b160d-bd02-46c7-9b4c-113adbf037e8.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/CastleImage/CastleImage.yy: -------------------------------------------------------------------------------- 1 | { 2 | "$GMSprite":"", 3 | "%Name":"CastleImage", 4 | "bboxMode":2, 5 | "bbox_bottom":427, 6 | "bbox_left":410, 7 | "bbox_right":495, 8 | "bbox_top":307, 9 | "collisionKind":1, 10 | "collisionTolerance":0, 11 | "DynamicTexturePage":false, 12 | "edgeFiltering":false, 13 | "For3D":false, 14 | "frames":[ 15 | {"$GMSpriteFrame":"","%Name":"e5d8a9e1-ca85-44ae-8b64-385c10cd3611","name":"e5d8a9e1-ca85-44ae-8b64-385c10cd3611","resourceType":"GMSpriteFrame","resourceVersion":"2.0",}, 16 | ], 17 | "gridX":0, 18 | "gridY":0, 19 | "height":480, 20 | "HTile":false, 21 | "layers":[ 22 | {"$GMImageLayer":"","%Name":"900a08c3-4b48-413a-b348-e1a13fb5569e","blendMode":0,"displayName":"default","isLocked":false,"name":"900a08c3-4b48-413a-b348-e1a13fb5569e","opacity":100.0,"resourceType":"GMImageLayer","resourceVersion":"2.0","visible":true,}, 23 | ], 24 | "name":"CastleImage", 25 | "nineSlice":null, 26 | "origin":0, 27 | "parent":{ 28 | "name":"Captain Holetooth", 29 | "path":"Captain Holetooth.yyp", 30 | }, 31 | "preMultiplyAlpha":false, 32 | "resourceType":"GMSprite", 33 | "resourceVersion":"2.0", 34 | "sequence":{ 35 | "$GMSequence":"", 36 | "%Name":"CastleImage", 37 | "autoRecord":true, 38 | "backdropHeight":768, 39 | "backdropImageOpacity":0.5, 40 | "backdropImagePath":"", 41 | "backdropWidth":1366, 42 | "backdropXOffset":0.0, 43 | "backdropYOffset":0.0, 44 | "events":{ 45 | "$KeyframeStore":"", 46 | "Keyframes":[], 47 | "resourceType":"KeyframeStore", 48 | "resourceVersion":"2.0", 49 | }, 50 | "eventStubScript":null, 51 | "eventToFunction":{}, 52 | "length":1.0, 53 | "lockOrigin":false, 54 | "moments":{ 55 | "$KeyframeStore":"", 56 | "Keyframes":[], 57 | "resourceType":"KeyframeStore", 58 | "resourceVersion":"2.0", 59 | }, 60 | "name":"CastleImage", 61 | "playback":1, 62 | "playbackSpeed":30.0, 63 | "playbackSpeedType":0, 64 | "resourceType":"GMSequence", 65 | "resourceVersion":"2.0", 66 | "showBackdrop":true, 67 | "showBackdropImage":false, 68 | "timeUnits":1, 69 | "tracks":[ 70 | {"$GMSpriteFramesTrack":"","builtinName":0,"events":[],"inheritsTrackColour":true,"interpolation":1,"isCreationTrack":false,"keyframes":{"$KeyframeStore":"","Keyframes":[ 71 | {"$Keyframe":"","Channels":{ 72 | "0":{"$SpriteFrameKeyframe":"","Id":{"name":"e5d8a9e1-ca85-44ae-8b64-385c10cd3611","path":"sprites/CastleImage/CastleImage.yy",},"resourceType":"SpriteFrameKeyframe","resourceVersion":"2.0",}, 73 | },"Disabled":false,"id":"2c1b79cc-f798-422c-888e-e6ce17c53cad","IsCreationKey":false,"Key":0.0,"Length":1.0,"resourceType":"Keyframe","resourceVersion":"2.0","Stretch":false,}, 74 | ],"resourceType":"KeyframeStore","resourceVersion":"2.0",},"modifiers":[],"name":"frames","resourceType":"GMSpriteFramesTrack","resourceVersion":"2.0","spriteId":null,"trackColour":0,"tracks":[],"traits":0,}, 75 | ], 76 | "visibleRange":null, 77 | "volume":1.0, 78 | "xorigin":0, 79 | "yorigin":0, 80 | }, 81 | "swatchColours":null, 82 | "swfPrecision":2.525, 83 | "textureGroupId":{ 84 | "name":"Default", 85 | "path":"texturegroups/Default", 86 | }, 87 | "type":0, 88 | "VTile":false, 89 | "width":640, 90 | } -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/CastleImage/e5d8a9e1-ca85-44ae-8b64-385c10cd3611.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/CastleImage/e5d8a9e1-ca85-44ae-8b64-385c10cd3611.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/CastleImage/layers/e5d8a9e1-ca85-44ae-8b64-385c10cd3611/900a08c3-4b48-413a-b348-e1a13fb5569e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/CastleImage/layers/e5d8a9e1-ca85-44ae-8b64-385c10cd3611/900a08c3-4b48-413a-b348-e1a13fb5569e.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/CastleWindow/1303e6bf-0a6c-4fe7-8c9e-d4d8e491a2fa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/CastleWindow/1303e6bf-0a6c-4fe7-8c9e-d4d8e491a2fa.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/CastleWindow/CastleWindow.yy: -------------------------------------------------------------------------------- 1 | { 2 | "$GMSprite":"", 3 | "%Name":"CastleWindow", 4 | "bboxMode":0, 5 | "bbox_bottom":154, 6 | "bbox_left":0, 7 | "bbox_right":109, 8 | "bbox_top":1, 9 | "collisionKind":1, 10 | "collisionTolerance":0, 11 | "DynamicTexturePage":false, 12 | "edgeFiltering":false, 13 | "For3D":false, 14 | "frames":[ 15 | {"$GMSpriteFrame":"","%Name":"1303e6bf-0a6c-4fe7-8c9e-d4d8e491a2fa","name":"1303e6bf-0a6c-4fe7-8c9e-d4d8e491a2fa","resourceType":"GMSpriteFrame","resourceVersion":"2.0",}, 16 | ], 17 | "gridX":0, 18 | "gridY":0, 19 | "height":160, 20 | "HTile":false, 21 | "layers":[ 22 | {"$GMImageLayer":"","%Name":"47fbcb3a-c7ec-47b4-9743-6253161cfb1c","blendMode":0,"displayName":"default","isLocked":false,"name":"47fbcb3a-c7ec-47b4-9743-6253161cfb1c","opacity":100.0,"resourceType":"GMImageLayer","resourceVersion":"2.0","visible":true,}, 23 | ], 24 | "name":"CastleWindow", 25 | "nineSlice":null, 26 | "origin":0, 27 | "parent":{ 28 | "name":"Captain Holetooth", 29 | "path":"Captain Holetooth.yyp", 30 | }, 31 | "preMultiplyAlpha":false, 32 | "resourceType":"GMSprite", 33 | "resourceVersion":"2.0", 34 | "sequence":{ 35 | "$GMSequence":"", 36 | "%Name":"CastleWindow", 37 | "autoRecord":true, 38 | "backdropHeight":768, 39 | "backdropImageOpacity":0.5, 40 | "backdropImagePath":"", 41 | "backdropWidth":1366, 42 | "backdropXOffset":0.0, 43 | "backdropYOffset":0.0, 44 | "events":{ 45 | "$KeyframeStore":"", 46 | "Keyframes":[], 47 | "resourceType":"KeyframeStore", 48 | "resourceVersion":"2.0", 49 | }, 50 | "eventStubScript":null, 51 | "eventToFunction":{}, 52 | "length":1.0, 53 | "lockOrigin":false, 54 | "moments":{ 55 | "$KeyframeStore":"", 56 | "Keyframes":[], 57 | "resourceType":"KeyframeStore", 58 | "resourceVersion":"2.0", 59 | }, 60 | "name":"CastleWindow", 61 | "playback":1, 62 | "playbackSpeed":30.0, 63 | "playbackSpeedType":0, 64 | "resourceType":"GMSequence", 65 | "resourceVersion":"2.0", 66 | "showBackdrop":true, 67 | "showBackdropImage":false, 68 | "timeUnits":1, 69 | "tracks":[ 70 | {"$GMSpriteFramesTrack":"","builtinName":0,"events":[],"inheritsTrackColour":true,"interpolation":1,"isCreationTrack":false,"keyframes":{"$KeyframeStore":"","Keyframes":[ 71 | {"$Keyframe":"","Channels":{ 72 | "0":{"$SpriteFrameKeyframe":"","Id":{"name":"1303e6bf-0a6c-4fe7-8c9e-d4d8e491a2fa","path":"sprites/CastleWindow/CastleWindow.yy",},"resourceType":"SpriteFrameKeyframe","resourceVersion":"2.0",}, 73 | },"Disabled":false,"id":"30985c7c-d89b-41b9-9386-0b6674227392","IsCreationKey":false,"Key":0.0,"Length":1.0,"resourceType":"Keyframe","resourceVersion":"2.0","Stretch":false,}, 74 | ],"resourceType":"KeyframeStore","resourceVersion":"2.0",},"modifiers":[],"name":"frames","resourceType":"GMSpriteFramesTrack","resourceVersion":"2.0","spriteId":null,"trackColour":0,"tracks":[],"traits":0,}, 75 | ], 76 | "visibleRange":null, 77 | "volume":1.0, 78 | "xorigin":0, 79 | "yorigin":0, 80 | }, 81 | "swatchColours":null, 82 | "swfPrecision":2.525, 83 | "textureGroupId":{ 84 | "name":"Default", 85 | "path":"texturegroups/Default", 86 | }, 87 | "type":0, 88 | "VTile":false, 89 | "width":118, 90 | } -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/CastleWindow/layers/1303e6bf-0a6c-4fe7-8c9e-d4d8e491a2fa/47fbcb3a-c7ec-47b4-9743-6253161cfb1c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/CastleWindow/layers/1303e6bf-0a6c-4fe7-8c9e-d4d8e491a2fa/47fbcb3a-c7ec-47b4-9743-6253161cfb1c.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/Sprite17/76fac358-3c42-4070-9cb0-fadc4f38a85b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/Sprite17/76fac358-3c42-4070-9cb0-fadc4f38a85b.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/Sprite17/Sprite17.yy: -------------------------------------------------------------------------------- 1 | { 2 | "$GMSprite":"", 3 | "%Name":"Sprite17", 4 | "bboxMode":0, 5 | "bbox_bottom":1023, 6 | "bbox_left":0, 7 | "bbox_right":511, 8 | "bbox_top":168, 9 | "collisionKind":1, 10 | "collisionTolerance":0, 11 | "DynamicTexturePage":false, 12 | "edgeFiltering":false, 13 | "For3D":false, 14 | "frames":[ 15 | {"$GMSpriteFrame":"","%Name":"76fac358-3c42-4070-9cb0-fadc4f38a85b","name":"76fac358-3c42-4070-9cb0-fadc4f38a85b","resourceType":"GMSpriteFrame","resourceVersion":"2.0",}, 16 | ], 17 | "gridX":0, 18 | "gridY":0, 19 | "height":1024, 20 | "HTile":false, 21 | "layers":[ 22 | {"$GMImageLayer":"","%Name":"b1dc1d39-b2f7-4f37-9ef7-63d8ab7c8ee0","blendMode":0,"displayName":"default","isLocked":false,"name":"b1dc1d39-b2f7-4f37-9ef7-63d8ab7c8ee0","opacity":100.0,"resourceType":"GMImageLayer","resourceVersion":"2.0","visible":true,}, 23 | ], 24 | "name":"Sprite17", 25 | "nineSlice":null, 26 | "origin":0, 27 | "parent":{ 28 | "name":"YanKandy", 29 | "path":"folders/Sprites/YanKandy.yy", 30 | }, 31 | "preMultiplyAlpha":false, 32 | "resourceType":"GMSprite", 33 | "resourceVersion":"2.0", 34 | "sequence":{ 35 | "$GMSequence":"", 36 | "%Name":"Sprite17", 37 | "autoRecord":true, 38 | "backdropHeight":768, 39 | "backdropImageOpacity":0.5, 40 | "backdropImagePath":"", 41 | "backdropWidth":1366, 42 | "backdropXOffset":0.0, 43 | "backdropYOffset":0.0, 44 | "events":{ 45 | "$KeyframeStore":"", 46 | "Keyframes":[], 47 | "resourceType":"KeyframeStore", 48 | "resourceVersion":"2.0", 49 | }, 50 | "eventStubScript":null, 51 | "eventToFunction":{}, 52 | "length":1.0, 53 | "lockOrigin":false, 54 | "moments":{ 55 | "$KeyframeStore":"", 56 | "Keyframes":[], 57 | "resourceType":"KeyframeStore", 58 | "resourceVersion":"2.0", 59 | }, 60 | "name":"Sprite17", 61 | "playback":1, 62 | "playbackSpeed":30.0, 63 | "playbackSpeedType":0, 64 | "resourceType":"GMSequence", 65 | "resourceVersion":"2.0", 66 | "showBackdrop":true, 67 | "showBackdropImage":false, 68 | "timeUnits":1, 69 | "tracks":[ 70 | {"$GMSpriteFramesTrack":"","builtinName":0,"events":[],"inheritsTrackColour":true,"interpolation":1,"isCreationTrack":false,"keyframes":{"$KeyframeStore":"","Keyframes":[ 71 | {"$Keyframe":"","Channels":{ 72 | "0":{"$SpriteFrameKeyframe":"","Id":{"name":"76fac358-3c42-4070-9cb0-fadc4f38a85b","path":"sprites/Sprite17/Sprite17.yy",},"resourceType":"SpriteFrameKeyframe","resourceVersion":"2.0",}, 73 | },"Disabled":false,"id":"298575e2-d9d4-4670-b31d-dd6f40a912a8","IsCreationKey":false,"Key":0.0,"Length":1.0,"resourceType":"Keyframe","resourceVersion":"2.0","Stretch":false,}, 74 | ],"resourceType":"KeyframeStore","resourceVersion":"2.0",},"modifiers":[],"name":"frames","resourceType":"GMSpriteFramesTrack","resourceVersion":"2.0","spriteId":null,"trackColour":0,"tracks":[],"traits":0,}, 75 | ], 76 | "visibleRange":null, 77 | "volume":1.0, 78 | "xorigin":0, 79 | "yorigin":0, 80 | }, 81 | "swatchColours":null, 82 | "swfPrecision":2.525, 83 | "textureGroupId":{ 84 | "name":"Default", 85 | "path":"texturegroups/Default", 86 | }, 87 | "type":0, 88 | "VTile":false, 89 | "width":512, 90 | } -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/Sprite17/layers/76fac358-3c42-4070-9cb0-fadc4f38a85b/b1dc1d39-b2f7-4f37-9ef7-63d8ab7c8ee0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/Sprite17/layers/76fac358-3c42-4070-9cb0-fadc4f38a85b/b1dc1d39-b2f7-4f37-9ef7-63d8ab7c8ee0.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/Start_Menu/4ae1196d-40af-4f1d-ade6-fb26f1be38ba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/Start_Menu/4ae1196d-40af-4f1d-ade6-fb26f1be38ba.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/Start_Menu/layers/4ae1196d-40af-4f1d-ade6-fb26f1be38ba/2ed4d1f1-ae54-48cd-ae09-eaf19c3ba315.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/Start_Menu/layers/4ae1196d-40af-4f1d-ade6-fb26f1be38ba/2ed4d1f1-ae54-48cd-ae09-eaf19c3ba315.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/Start_Menu/layers/4ae1196d-40af-4f1d-ade6-fb26f1be38ba/d1373d9e-6da8-4f99-a658-03ba51060251.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/Start_Menu/layers/4ae1196d-40af-4f1d-ade6-fb26f1be38ba/d1373d9e-6da8-4f99-a658-03ba51060251.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/TilSetCastleInside/d4bcdfb8-4214-4b9d-900e-3069b09af45b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/TilSetCastleInside/d4bcdfb8-4214-4b9d-900e-3069b09af45b.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/TilSetCastleInside/layers/d4bcdfb8-4214-4b9d-900e-3069b09af45b/6bb3e205-4c90-420c-9bb6-dd6e8d80b1a8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/TilSetCastleInside/layers/d4bcdfb8-4214-4b9d-900e-3069b09af45b/6bb3e205-4c90-420c-9bb6-dd6e8d80b1a8.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/TilSetCastleOutside/56f09687-eba9-4fa6-b2e5-85123e569254.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/TilSetCastleOutside/56f09687-eba9-4fa6-b2e5-85123e569254.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/TilSetCastleOutside/999ecf57-074a-427b-a9af-68dc5c4710fa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/TilSetCastleOutside/999ecf57-074a-427b-a9af-68dc5c4710fa.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/TilSetCastleOutside/layers/56f09687-eba9-4fa6-b2e5-85123e569254/bebd14c5-39b5-40fb-9b89-f91657c14adb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/TilSetCastleOutside/layers/56f09687-eba9-4fa6-b2e5-85123e569254/bebd14c5-39b5-40fb-9b89-f91657c14adb.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/TilSetCastleOutside/layers/999ecf57-074a-427b-a9af-68dc5c4710fa/bebd14c5-39b5-40fb-9b89-f91657c14adb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/TilSetCastleOutside/layers/999ecf57-074a-427b-a9af-68dc5c4710fa/bebd14c5-39b5-40fb-9b89-f91657c14adb.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/bg_forest/99084b66-c010-41f9-943d-43aa08ace671.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/bg_forest/99084b66-c010-41f9-943d-43aa08ace671.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/bg_forest/bg_forest.yy: -------------------------------------------------------------------------------- 1 | { 2 | "$GMSprite":"", 3 | "%Name":"bg_forest", 4 | "bboxMode":0, 5 | "bbox_bottom":255, 6 | "bbox_left":0, 7 | "bbox_right":1023, 8 | "bbox_top":30, 9 | "collisionKind":1, 10 | "collisionTolerance":0, 11 | "DynamicTexturePage":false, 12 | "edgeFiltering":false, 13 | "For3D":false, 14 | "frames":[ 15 | {"$GMSpriteFrame":"","%Name":"99084b66-c010-41f9-943d-43aa08ace671","name":"99084b66-c010-41f9-943d-43aa08ace671","resourceType":"GMSpriteFrame","resourceVersion":"2.0",}, 16 | ], 17 | "gridX":0, 18 | "gridY":0, 19 | "height":256, 20 | "HTile":false, 21 | "layers":[ 22 | {"$GMImageLayer":"","%Name":"5552e7a5-8283-4b8b-80e6-843ddcf0a739","blendMode":0,"displayName":"default","isLocked":false,"name":"5552e7a5-8283-4b8b-80e6-843ddcf0a739","opacity":100.0,"resourceType":"GMImageLayer","resourceVersion":"2.0","visible":true,}, 23 | ], 24 | "name":"bg_forest", 25 | "nineSlice":null, 26 | "origin":0, 27 | "parent":{ 28 | "name":"Backgrounds", 29 | "path":"folders/Sprites/Backgrounds.yy", 30 | }, 31 | "preMultiplyAlpha":false, 32 | "resourceType":"GMSprite", 33 | "resourceVersion":"2.0", 34 | "sequence":{ 35 | "$GMSequence":"", 36 | "%Name":"bg_forest", 37 | "autoRecord":true, 38 | "backdropHeight":768, 39 | "backdropImageOpacity":0.5, 40 | "backdropImagePath":"", 41 | "backdropWidth":1366, 42 | "backdropXOffset":0.0, 43 | "backdropYOffset":0.0, 44 | "events":{ 45 | "$KeyframeStore":"", 46 | "Keyframes":[], 47 | "resourceType":"KeyframeStore", 48 | "resourceVersion":"2.0", 49 | }, 50 | "eventStubScript":null, 51 | "eventToFunction":{}, 52 | "length":1.0, 53 | "lockOrigin":false, 54 | "moments":{ 55 | "$KeyframeStore":"", 56 | "Keyframes":[], 57 | "resourceType":"KeyframeStore", 58 | "resourceVersion":"2.0", 59 | }, 60 | "name":"bg_forest", 61 | "playback":1, 62 | "playbackSpeed":30.0, 63 | "playbackSpeedType":0, 64 | "resourceType":"GMSequence", 65 | "resourceVersion":"2.0", 66 | "showBackdrop":true, 67 | "showBackdropImage":false, 68 | "timeUnits":1, 69 | "tracks":[ 70 | {"$GMSpriteFramesTrack":"","builtinName":0,"events":[],"inheritsTrackColour":true,"interpolation":1,"isCreationTrack":false,"keyframes":{"$KeyframeStore":"","Keyframes":[ 71 | {"$Keyframe":"","Channels":{ 72 | "0":{"$SpriteFrameKeyframe":"","Id":{"name":"99084b66-c010-41f9-943d-43aa08ace671","path":"sprites/bg_forest/bg_forest.yy",},"resourceType":"SpriteFrameKeyframe","resourceVersion":"2.0",}, 73 | },"Disabled":false,"id":"6d13eb7c-e4f1-45e6-8b42-8a41c5cf2616","IsCreationKey":false,"Key":0.0,"Length":1.0,"resourceType":"Keyframe","resourceVersion":"2.0","Stretch":false,}, 74 | ],"resourceType":"KeyframeStore","resourceVersion":"2.0",},"modifiers":[],"name":"frames","resourceType":"GMSpriteFramesTrack","resourceVersion":"2.0","spriteId":null,"trackColour":0,"tracks":[],"traits":0,}, 75 | ], 76 | "visibleRange":null, 77 | "volume":1.0, 78 | "xorigin":0, 79 | "yorigin":0, 80 | }, 81 | "swatchColours":null, 82 | "swfPrecision":2.525, 83 | "textureGroupId":{ 84 | "name":"Default", 85 | "path":"texturegroups/Default", 86 | }, 87 | "type":0, 88 | "VTile":false, 89 | "width":1024, 90 | } -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/bg_forest/layers/99084b66-c010-41f9-943d-43aa08ace671/5552e7a5-8283-4b8b-80e6-843ddcf0a739.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/bg_forest/layers/99084b66-c010-41f9-943d-43aa08ace671/5552e7a5-8283-4b8b-80e6-843ddcf0a739.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/candy_egg_image/868044ba-58d3-4fbc-b048-5b324a96fd9b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/candy_egg_image/868044ba-58d3-4fbc-b048-5b324a96fd9b.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/candy_egg_image/layers/868044ba-58d3-4fbc-b048-5b324a96fd9b/a1fd58c6-5702-470c-8d08-ecf008d11e46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/candy_egg_image/layers/868044ba-58d3-4fbc-b048-5b324a96fd9b/a1fd58c6-5702-470c-8d08-ecf008d11e46.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/close_button/138ab8ba-ab5b-4018-9c94-75ffbefd7f3b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/close_button/138ab8ba-ab5b-4018-9c94-75ffbefd7f3b.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/close_button/close_button.yy: -------------------------------------------------------------------------------- 1 | { 2 | "$GMSprite":"", 3 | "%Name":"close_button", 4 | "bboxMode":0, 5 | "bbox_bottom":23, 6 | "bbox_left":0, 7 | "bbox_right":15, 8 | "bbox_top":1, 9 | "collisionKind":1, 10 | "collisionTolerance":0, 11 | "DynamicTexturePage":false, 12 | "edgeFiltering":false, 13 | "For3D":false, 14 | "frames":[ 15 | {"$GMSpriteFrame":"","%Name":"138ab8ba-ab5b-4018-9c94-75ffbefd7f3b","name":"138ab8ba-ab5b-4018-9c94-75ffbefd7f3b","resourceType":"GMSpriteFrame","resourceVersion":"2.0",}, 16 | ], 17 | "gridX":0, 18 | "gridY":0, 19 | "height":24, 20 | "HTile":false, 21 | "layers":[ 22 | {"$GMImageLayer":"","%Name":"a1daec0f-df9e-4d52-b18c-7db781d6028e","blendMode":0,"displayName":"default","isLocked":false,"name":"a1daec0f-df9e-4d52-b18c-7db781d6028e","opacity":100.0,"resourceType":"GMImageLayer","resourceVersion":"2.0","visible":true,}, 23 | ], 24 | "name":"close_button", 25 | "nineSlice":null, 26 | "origin":0, 27 | "parent":{ 28 | "name":"Menu", 29 | "path":"folders/Sprites/Menu.yy", 30 | }, 31 | "preMultiplyAlpha":false, 32 | "resourceType":"GMSprite", 33 | "resourceVersion":"2.0", 34 | "sequence":{ 35 | "$GMSequence":"", 36 | "%Name":"close_button", 37 | "autoRecord":true, 38 | "backdropHeight":768, 39 | "backdropImageOpacity":0.5, 40 | "backdropImagePath":"", 41 | "backdropWidth":1366, 42 | "backdropXOffset":0.0, 43 | "backdropYOffset":0.0, 44 | "events":{ 45 | "$KeyframeStore":"", 46 | "Keyframes":[], 47 | "resourceType":"KeyframeStore", 48 | "resourceVersion":"2.0", 49 | }, 50 | "eventStubScript":null, 51 | "eventToFunction":{}, 52 | "length":1.0, 53 | "lockOrigin":false, 54 | "moments":{ 55 | "$KeyframeStore":"", 56 | "Keyframes":[], 57 | "resourceType":"KeyframeStore", 58 | "resourceVersion":"2.0", 59 | }, 60 | "name":"close_button", 61 | "playback":1, 62 | "playbackSpeed":30.0, 63 | "playbackSpeedType":0, 64 | "resourceType":"GMSequence", 65 | "resourceVersion":"2.0", 66 | "showBackdrop":true, 67 | "showBackdropImage":false, 68 | "timeUnits":1, 69 | "tracks":[ 70 | {"$GMSpriteFramesTrack":"","builtinName":0,"events":[],"inheritsTrackColour":true,"interpolation":1,"isCreationTrack":false,"keyframes":{"$KeyframeStore":"","Keyframes":[ 71 | {"$Keyframe":"","Channels":{ 72 | "0":{"$SpriteFrameKeyframe":"","Id":{"name":"138ab8ba-ab5b-4018-9c94-75ffbefd7f3b","path":"sprites/close_button/close_button.yy",},"resourceType":"SpriteFrameKeyframe","resourceVersion":"2.0",}, 73 | },"Disabled":false,"id":"47294f90-76ba-42b7-9e7d-8dc0fb89008a","IsCreationKey":false,"Key":0.0,"Length":1.0,"resourceType":"Keyframe","resourceVersion":"2.0","Stretch":false,}, 74 | ],"resourceType":"KeyframeStore","resourceVersion":"2.0",},"modifiers":[],"name":"frames","resourceType":"GMSpriteFramesTrack","resourceVersion":"2.0","spriteId":null,"trackColour":0,"tracks":[],"traits":0,}, 75 | ], 76 | "visibleRange":null, 77 | "volume":1.0, 78 | "xorigin":0, 79 | "yorigin":0, 80 | }, 81 | "swatchColours":null, 82 | "swfPrecision":2.525, 83 | "textureGroupId":{ 84 | "name":"Default", 85 | "path":"texturegroups/Default", 86 | }, 87 | "type":0, 88 | "VTile":false, 89 | "width":16, 90 | } -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/close_button/layers/138ab8ba-ab5b-4018-9c94-75ffbefd7f3b/a1daec0f-df9e-4d52-b18c-7db781d6028e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/close_button/layers/138ab8ba-ab5b-4018-9c94-75ffbefd7f3b/a1daec0f-df9e-4d52-b18c-7db781d6028e.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/de/dae0b85e-b5c8-4884-acd5-e327030e04e0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/de/dae0b85e-b5c8-4884-acd5-e327030e04e0.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/de/de.yy: -------------------------------------------------------------------------------- 1 | { 2 | "$GMSprite":"", 3 | "%Name":"de", 4 | "bboxMode":0, 5 | "bbox_bottom":10, 6 | "bbox_left":0, 7 | "bbox_right":15, 8 | "bbox_top":0, 9 | "collisionKind":1, 10 | "collisionTolerance":0, 11 | "DynamicTexturePage":false, 12 | "edgeFiltering":false, 13 | "For3D":false, 14 | "frames":[ 15 | {"$GMSpriteFrame":"","%Name":"dae0b85e-b5c8-4884-acd5-e327030e04e0","name":"dae0b85e-b5c8-4884-acd5-e327030e04e0","resourceType":"GMSpriteFrame","resourceVersion":"2.0",}, 16 | ], 17 | "gridX":0, 18 | "gridY":0, 19 | "height":11, 20 | "HTile":false, 21 | "layers":[ 22 | {"$GMImageLayer":"","%Name":"e70d3bad-ab07-430c-874e-c6b46dd7810b","blendMode":0,"displayName":"default","isLocked":false,"name":"e70d3bad-ab07-430c-874e-c6b46dd7810b","opacity":100.0,"resourceType":"GMImageLayer","resourceVersion":"2.0","visible":true,}, 23 | ], 24 | "name":"de", 25 | "nineSlice":null, 26 | "origin":0, 27 | "parent":{ 28 | "name":"Menu", 29 | "path":"folders/Sprites/Menu.yy", 30 | }, 31 | "preMultiplyAlpha":false, 32 | "resourceType":"GMSprite", 33 | "resourceVersion":"2.0", 34 | "sequence":{ 35 | "$GMSequence":"", 36 | "%Name":"de", 37 | "autoRecord":true, 38 | "backdropHeight":768, 39 | "backdropImageOpacity":0.5, 40 | "backdropImagePath":"", 41 | "backdropWidth":1366, 42 | "backdropXOffset":0.0, 43 | "backdropYOffset":0.0, 44 | "events":{ 45 | "$KeyframeStore":"", 46 | "Keyframes":[], 47 | "resourceType":"KeyframeStore", 48 | "resourceVersion":"2.0", 49 | }, 50 | "eventStubScript":null, 51 | "eventToFunction":{}, 52 | "length":1.0, 53 | "lockOrigin":false, 54 | "moments":{ 55 | "$KeyframeStore":"", 56 | "Keyframes":[], 57 | "resourceType":"KeyframeStore", 58 | "resourceVersion":"2.0", 59 | }, 60 | "name":"de", 61 | "playback":1, 62 | "playbackSpeed":30.0, 63 | "playbackSpeedType":0, 64 | "resourceType":"GMSequence", 65 | "resourceVersion":"2.0", 66 | "showBackdrop":true, 67 | "showBackdropImage":false, 68 | "timeUnits":1, 69 | "tracks":[ 70 | {"$GMSpriteFramesTrack":"","builtinName":0,"events":[],"inheritsTrackColour":true,"interpolation":1,"isCreationTrack":false,"keyframes":{"$KeyframeStore":"","Keyframes":[ 71 | {"$Keyframe":"","Channels":{ 72 | "0":{"$SpriteFrameKeyframe":"","Id":{"name":"dae0b85e-b5c8-4884-acd5-e327030e04e0","path":"sprites/de/de.yy",},"resourceType":"SpriteFrameKeyframe","resourceVersion":"2.0",}, 73 | },"Disabled":false,"id":"ab0b88bd-19c3-4be5-929b-9c573e0f6812","IsCreationKey":false,"Key":0.0,"Length":1.0,"resourceType":"Keyframe","resourceVersion":"2.0","Stretch":false,}, 74 | ],"resourceType":"KeyframeStore","resourceVersion":"2.0",},"modifiers":[],"name":"frames","resourceType":"GMSpriteFramesTrack","resourceVersion":"2.0","spriteId":null,"trackColour":0,"tracks":[],"traits":0,}, 75 | ], 76 | "visibleRange":null, 77 | "volume":1.0, 78 | "xorigin":0, 79 | "yorigin":0, 80 | }, 81 | "swatchColours":null, 82 | "swfPrecision":2.525, 83 | "textureGroupId":{ 84 | "name":"Default", 85 | "path":"texturegroups/Default", 86 | }, 87 | "type":0, 88 | "VTile":false, 89 | "width":16, 90 | } -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/de/layers/dae0b85e-b5c8-4884-acd5-e327030e04e0/e70d3bad-ab07-430c-874e-c6b46dd7810b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/de/layers/dae0b85e-b5c8-4884-acd5-e327030e04e0/e70d3bad-ab07-430c-874e-c6b46dd7810b.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/03b94bd2-d5bc-447d-be0d-7ac1e29840f9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/03b94bd2-d5bc-447d-be0d-7ac1e29840f9.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/06795a89-a947-49a6-a121-b6fb0ae80d24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/06795a89-a947-49a6-a121-b6fb0ae80d24.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/1e3a52a2-d5d7-4968-89bc-57ecd5349817.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/1e3a52a2-d5d7-4968-89bc-57ecd5349817.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/22208eaf-b553-445e-8751-28ae6b3f17a3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/22208eaf-b553-445e-8751-28ae6b3f17a3.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/35b3576f-b40a-4b57-af0a-838d29ac170c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/35b3576f-b40a-4b57-af0a-838d29ac170c.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/4eaa07c4-cc61-48cb-88db-8aea337eb56e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/4eaa07c4-cc61-48cb-88db-8aea337eb56e.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/608cfd4e-0b08-42eb-ae8b-c9f3519f92ba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/608cfd4e-0b08-42eb-ae8b-c9f3519f92ba.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/6342f9a8-518d-4b42-85ce-105fd63e8500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/6342f9a8-518d-4b42-85ce-105fd63e8500.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/70d4136d-8367-4f2d-97db-ca0667b78888.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/70d4136d-8367-4f2d-97db-ca0667b78888.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/7b500ad2-6aec-4de1-8a99-75b1c90207b1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/7b500ad2-6aec-4de1-8a99-75b1c90207b1.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/7bddb5b9-9f73-4b37-8e4c-ecd9dce79519.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/7bddb5b9-9f73-4b37-8e4c-ecd9dce79519.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/7fdb89fa-89b8-44ac-9ef0-f633413647e6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/7fdb89fa-89b8-44ac-9ef0-f633413647e6.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/83adbe57-1cf9-4ee9-b648-f11cc99018f7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/83adbe57-1cf9-4ee9-b648-f11cc99018f7.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/844a4b80-9d00-4d96-9110-558e6cf7257a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/844a4b80-9d00-4d96-9110-558e6cf7257a.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/a765b2d0-3cc6-4ca5-9823-6b51c0e2aff6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/a765b2d0-3cc6-4ca5-9823-6b51c0e2aff6.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/b6e806bf-3183-48e1-8d6e-a784e11ad520.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/b6e806bf-3183-48e1-8d6e-a784e11ad520.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/b72acb44-2bbe-4014-9d00-bb9fd032e20b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/b72acb44-2bbe-4014-9d00-bb9fd032e20b.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/bb0b8b05-5b72-4b01-9c9b-e8ca8be03e2a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/bb0b8b05-5b72-4b01-9c9b-e8ca8be03e2a.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/c09ac66a-609b-4817-982d-7d2f28511576.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/c09ac66a-609b-4817-982d-7d2f28511576.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/f364ef27-6429-4b5c-b51b-0c344303870e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/f364ef27-6429-4b5c-b51b-0c344303870e.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/f4e6b6aa-6f2a-4b15-af53-bd981581b786.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/f4e6b6aa-6f2a-4b15-af53-bd981581b786.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/f5618180-6326-445f-ba2d-305b19903d8f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/f5618180-6326-445f-ba2d-305b19903d8f.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/f97054ba-43ca-48a4-a32a-3eb7f7f6f001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/f97054ba-43ca-48a4-a32a-3eb7f7f6f001.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/fa0edcc5-7aaa-4d0e-8248-08ff5ca63174.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/fa0edcc5-7aaa-4d0e-8248-08ff5ca63174.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/fe754ca8-13e0-4661-a971-7d7f69fe5c11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/fe754ca8-13e0-4661-a971-7d7f69fe5c11.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/layers/03b94bd2-d5bc-447d-be0d-7ac1e29840f9/4d8e50d1-b654-4736-a1f4-927455cc4503.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/layers/03b94bd2-d5bc-447d-be0d-7ac1e29840f9/4d8e50d1-b654-4736-a1f4-927455cc4503.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/layers/06795a89-a947-49a6-a121-b6fb0ae80d24/4d8e50d1-b654-4736-a1f4-927455cc4503.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/layers/06795a89-a947-49a6-a121-b6fb0ae80d24/4d8e50d1-b654-4736-a1f4-927455cc4503.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/layers/1e3a52a2-d5d7-4968-89bc-57ecd5349817/4d8e50d1-b654-4736-a1f4-927455cc4503.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/layers/1e3a52a2-d5d7-4968-89bc-57ecd5349817/4d8e50d1-b654-4736-a1f4-927455cc4503.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/layers/22208eaf-b553-445e-8751-28ae6b3f17a3/4d8e50d1-b654-4736-a1f4-927455cc4503.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/layers/22208eaf-b553-445e-8751-28ae6b3f17a3/4d8e50d1-b654-4736-a1f4-927455cc4503.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/layers/35b3576f-b40a-4b57-af0a-838d29ac170c/4d8e50d1-b654-4736-a1f4-927455cc4503.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/layers/35b3576f-b40a-4b57-af0a-838d29ac170c/4d8e50d1-b654-4736-a1f4-927455cc4503.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/layers/4eaa07c4-cc61-48cb-88db-8aea337eb56e/4d8e50d1-b654-4736-a1f4-927455cc4503.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/layers/4eaa07c4-cc61-48cb-88db-8aea337eb56e/4d8e50d1-b654-4736-a1f4-927455cc4503.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/layers/608cfd4e-0b08-42eb-ae8b-c9f3519f92ba/4d8e50d1-b654-4736-a1f4-927455cc4503.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/layers/608cfd4e-0b08-42eb-ae8b-c9f3519f92ba/4d8e50d1-b654-4736-a1f4-927455cc4503.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/layers/6342f9a8-518d-4b42-85ce-105fd63e8500/4d8e50d1-b654-4736-a1f4-927455cc4503.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/layers/6342f9a8-518d-4b42-85ce-105fd63e8500/4d8e50d1-b654-4736-a1f4-927455cc4503.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/layers/70d4136d-8367-4f2d-97db-ca0667b78888/4d8e50d1-b654-4736-a1f4-927455cc4503.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/layers/70d4136d-8367-4f2d-97db-ca0667b78888/4d8e50d1-b654-4736-a1f4-927455cc4503.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/layers/7b500ad2-6aec-4de1-8a99-75b1c90207b1/4d8e50d1-b654-4736-a1f4-927455cc4503.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/layers/7b500ad2-6aec-4de1-8a99-75b1c90207b1/4d8e50d1-b654-4736-a1f4-927455cc4503.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/layers/7bddb5b9-9f73-4b37-8e4c-ecd9dce79519/4d8e50d1-b654-4736-a1f4-927455cc4503.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/layers/7bddb5b9-9f73-4b37-8e4c-ecd9dce79519/4d8e50d1-b654-4736-a1f4-927455cc4503.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/layers/7fdb89fa-89b8-44ac-9ef0-f633413647e6/4d8e50d1-b654-4736-a1f4-927455cc4503.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/layers/7fdb89fa-89b8-44ac-9ef0-f633413647e6/4d8e50d1-b654-4736-a1f4-927455cc4503.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/layers/83adbe57-1cf9-4ee9-b648-f11cc99018f7/4d8e50d1-b654-4736-a1f4-927455cc4503.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/layers/83adbe57-1cf9-4ee9-b648-f11cc99018f7/4d8e50d1-b654-4736-a1f4-927455cc4503.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/layers/844a4b80-9d00-4d96-9110-558e6cf7257a/4d8e50d1-b654-4736-a1f4-927455cc4503.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/layers/844a4b80-9d00-4d96-9110-558e6cf7257a/4d8e50d1-b654-4736-a1f4-927455cc4503.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/layers/a765b2d0-3cc6-4ca5-9823-6b51c0e2aff6/4d8e50d1-b654-4736-a1f4-927455cc4503.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/layers/a765b2d0-3cc6-4ca5-9823-6b51c0e2aff6/4d8e50d1-b654-4736-a1f4-927455cc4503.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/layers/b6e806bf-3183-48e1-8d6e-a784e11ad520/4d8e50d1-b654-4736-a1f4-927455cc4503.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/layers/b6e806bf-3183-48e1-8d6e-a784e11ad520/4d8e50d1-b654-4736-a1f4-927455cc4503.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/layers/b72acb44-2bbe-4014-9d00-bb9fd032e20b/4d8e50d1-b654-4736-a1f4-927455cc4503.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/layers/b72acb44-2bbe-4014-9d00-bb9fd032e20b/4d8e50d1-b654-4736-a1f4-927455cc4503.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/layers/bb0b8b05-5b72-4b01-9c9b-e8ca8be03e2a/4d8e50d1-b654-4736-a1f4-927455cc4503.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/layers/bb0b8b05-5b72-4b01-9c9b-e8ca8be03e2a/4d8e50d1-b654-4736-a1f4-927455cc4503.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/layers/c09ac66a-609b-4817-982d-7d2f28511576/4d8e50d1-b654-4736-a1f4-927455cc4503.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/layers/c09ac66a-609b-4817-982d-7d2f28511576/4d8e50d1-b654-4736-a1f4-927455cc4503.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/layers/f364ef27-6429-4b5c-b51b-0c344303870e/4d8e50d1-b654-4736-a1f4-927455cc4503.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/layers/f364ef27-6429-4b5c-b51b-0c344303870e/4d8e50d1-b654-4736-a1f4-927455cc4503.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/layers/f4e6b6aa-6f2a-4b15-af53-bd981581b786/4d8e50d1-b654-4736-a1f4-927455cc4503.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/layers/f4e6b6aa-6f2a-4b15-af53-bd981581b786/4d8e50d1-b654-4736-a1f4-927455cc4503.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/layers/f5618180-6326-445f-ba2d-305b19903d8f/4d8e50d1-b654-4736-a1f4-927455cc4503.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/layers/f5618180-6326-445f-ba2d-305b19903d8f/4d8e50d1-b654-4736-a1f4-927455cc4503.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/layers/f97054ba-43ca-48a4-a32a-3eb7f7f6f001/4d8e50d1-b654-4736-a1f4-927455cc4503.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/layers/f97054ba-43ca-48a4-a32a-3eb7f7f6f001/4d8e50d1-b654-4736-a1f4-927455cc4503.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/layers/fa0edcc5-7aaa-4d0e-8248-08ff5ca63174/4d8e50d1-b654-4736-a1f4-927455cc4503.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/layers/fa0edcc5-7aaa-4d0e-8248-08ff5ca63174/4d8e50d1-b654-4736-a1f4-927455cc4503.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/layers/fe754ca8-13e0-4661-a971-7d7f69fe5c11/4d8e50d1-b654-4736-a1f4-927455cc4503.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/flair_waterdrops/layers/fe754ca8-13e0-4661-a971-7d7f69fe5c11/4d8e50d1-b654-4736-a1f4-927455cc4503.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/gb/673553d9-5069-41a6-ad70-d42377661e93.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/gb/673553d9-5069-41a6-ad70-d42377661e93.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/gb/gb.yy: -------------------------------------------------------------------------------- 1 | { 2 | "$GMSprite":"", 3 | "%Name":"gb", 4 | "bboxMode":0, 5 | "bbox_bottom":10, 6 | "bbox_left":0, 7 | "bbox_right":15, 8 | "bbox_top":0, 9 | "collisionKind":1, 10 | "collisionTolerance":0, 11 | "DynamicTexturePage":false, 12 | "edgeFiltering":false, 13 | "For3D":false, 14 | "frames":[ 15 | {"$GMSpriteFrame":"","%Name":"673553d9-5069-41a6-ad70-d42377661e93","name":"673553d9-5069-41a6-ad70-d42377661e93","resourceType":"GMSpriteFrame","resourceVersion":"2.0",}, 16 | ], 17 | "gridX":0, 18 | "gridY":0, 19 | "height":11, 20 | "HTile":false, 21 | "layers":[ 22 | {"$GMImageLayer":"","%Name":"885f8fc4-01ea-43cf-ad8e-7ee9371ddf46","blendMode":0,"displayName":"default","isLocked":false,"name":"885f8fc4-01ea-43cf-ad8e-7ee9371ddf46","opacity":100.0,"resourceType":"GMImageLayer","resourceVersion":"2.0","visible":true,}, 23 | ], 24 | "name":"gb", 25 | "nineSlice":null, 26 | "origin":0, 27 | "parent":{ 28 | "name":"Menu", 29 | "path":"folders/Sprites/Menu.yy", 30 | }, 31 | "preMultiplyAlpha":false, 32 | "resourceType":"GMSprite", 33 | "resourceVersion":"2.0", 34 | "sequence":{ 35 | "$GMSequence":"", 36 | "%Name":"gb", 37 | "autoRecord":true, 38 | "backdropHeight":768, 39 | "backdropImageOpacity":0.5, 40 | "backdropImagePath":"", 41 | "backdropWidth":1366, 42 | "backdropXOffset":0.0, 43 | "backdropYOffset":0.0, 44 | "events":{ 45 | "$KeyframeStore":"", 46 | "Keyframes":[], 47 | "resourceType":"KeyframeStore", 48 | "resourceVersion":"2.0", 49 | }, 50 | "eventStubScript":null, 51 | "eventToFunction":{}, 52 | "length":1.0, 53 | "lockOrigin":false, 54 | "moments":{ 55 | "$KeyframeStore":"", 56 | "Keyframes":[], 57 | "resourceType":"KeyframeStore", 58 | "resourceVersion":"2.0", 59 | }, 60 | "name":"gb", 61 | "playback":1, 62 | "playbackSpeed":30.0, 63 | "playbackSpeedType":0, 64 | "resourceType":"GMSequence", 65 | "resourceVersion":"2.0", 66 | "showBackdrop":true, 67 | "showBackdropImage":false, 68 | "timeUnits":1, 69 | "tracks":[ 70 | {"$GMSpriteFramesTrack":"","builtinName":0,"events":[],"inheritsTrackColour":true,"interpolation":1,"isCreationTrack":false,"keyframes":{"$KeyframeStore":"","Keyframes":[ 71 | {"$Keyframe":"","Channels":{ 72 | "0":{"$SpriteFrameKeyframe":"","Id":{"name":"673553d9-5069-41a6-ad70-d42377661e93","path":"sprites/gb/gb.yy",},"resourceType":"SpriteFrameKeyframe","resourceVersion":"2.0",}, 73 | },"Disabled":false,"id":"15707e97-4842-4601-b579-229168273447","IsCreationKey":false,"Key":0.0,"Length":1.0,"resourceType":"Keyframe","resourceVersion":"2.0","Stretch":false,}, 74 | ],"resourceType":"KeyframeStore","resourceVersion":"2.0",},"modifiers":[],"name":"frames","resourceType":"GMSpriteFramesTrack","resourceVersion":"2.0","spriteId":null,"trackColour":0,"tracks":[],"traits":0,}, 75 | ], 76 | "visibleRange":null, 77 | "volume":1.0, 78 | "xorigin":0, 79 | "yorigin":0, 80 | }, 81 | "swatchColours":null, 82 | "swfPrecision":2.525, 83 | "textureGroupId":{ 84 | "name":"Default", 85 | "path":"texturegroups/Default", 86 | }, 87 | "type":0, 88 | "VTile":false, 89 | "width":16, 90 | } -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/gb/layers/673553d9-5069-41a6-ad70-d42377661e93/885f8fc4-01ea-43cf-ad8e-7ee9371ddf46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/gb/layers/673553d9-5069-41a6-ad70-d42377661e93/885f8fc4-01ea-43cf-ad8e-7ee9371ddf46.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_idle/27badc64-af52-4244-bc78-a94adb157edb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_idle/27badc64-af52-4244-bc78-a94adb157edb.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_idle/3f10ac05-5cc8-40df-aac9-b3f834dfbfa3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_idle/3f10ac05-5cc8-40df-aac9-b3f834dfbfa3.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_idle/4b8b3a50-07bd-44cf-9886-91dab8238618.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_idle/4b8b3a50-07bd-44cf-9886-91dab8238618.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_idle/4fd8022f-18f3-4f2f-a3b9-e0b5c5fe423a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_idle/4fd8022f-18f3-4f2f-a3b9-e0b5c5fe423a.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_idle/6279a970-2856-4e8a-ad68-1ea194e9a218.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_idle/6279a970-2856-4e8a-ad68-1ea194e9a218.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_idle/6507c1c2-af9e-49a4-9354-89573e9fd30e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_idle/6507c1c2-af9e-49a4-9354-89573e9fd30e.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_idle/87000bbd-ed74-44f0-86bd-d9c2a27979ca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_idle/87000bbd-ed74-44f0-86bd-d9c2a27979ca.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_idle/8e15a896-47dd-46f6-b526-7c855188d9e4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_idle/8e15a896-47dd-46f6-b526-7c855188d9e4.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_idle/bde3e5d3-6640-4f1b-871f-483bb93ec993.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_idle/bde3e5d3-6640-4f1b-871f-483bb93ec993.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_idle/e73c0915-9aff-4a72-8d89-e3c04d40bc48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_idle/e73c0915-9aff-4a72-8d89-e3c04d40bc48.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_idle/eb9829f8-6755-4457-a183-58e573a5f9ef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_idle/eb9829f8-6755-4457-a183-58e573a5f9ef.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_idle/layers/27badc64-af52-4244-bc78-a94adb157edb/d2e72aae-6d4b-4e0a-9d5e-02d8f828ab9e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_idle/layers/27badc64-af52-4244-bc78-a94adb157edb/d2e72aae-6d4b-4e0a-9d5e-02d8f828ab9e.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_idle/layers/3f10ac05-5cc8-40df-aac9-b3f834dfbfa3/d2e72aae-6d4b-4e0a-9d5e-02d8f828ab9e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_idle/layers/3f10ac05-5cc8-40df-aac9-b3f834dfbfa3/d2e72aae-6d4b-4e0a-9d5e-02d8f828ab9e.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_idle/layers/4b8b3a50-07bd-44cf-9886-91dab8238618/d2e72aae-6d4b-4e0a-9d5e-02d8f828ab9e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_idle/layers/4b8b3a50-07bd-44cf-9886-91dab8238618/d2e72aae-6d4b-4e0a-9d5e-02d8f828ab9e.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_idle/layers/4fd8022f-18f3-4f2f-a3b9-e0b5c5fe423a/d2e72aae-6d4b-4e0a-9d5e-02d8f828ab9e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_idle/layers/4fd8022f-18f3-4f2f-a3b9-e0b5c5fe423a/d2e72aae-6d4b-4e0a-9d5e-02d8f828ab9e.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_idle/layers/6279a970-2856-4e8a-ad68-1ea194e9a218/ee67db66-cf1a-4720-99d9-12d222c2c694.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_idle/layers/6279a970-2856-4e8a-ad68-1ea194e9a218/ee67db66-cf1a-4720-99d9-12d222c2c694.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_idle/layers/6507c1c2-af9e-49a4-9354-89573e9fd30e/d2e72aae-6d4b-4e0a-9d5e-02d8f828ab9e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_idle/layers/6507c1c2-af9e-49a4-9354-89573e9fd30e/d2e72aae-6d4b-4e0a-9d5e-02d8f828ab9e.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_idle/layers/87000bbd-ed74-44f0-86bd-d9c2a27979ca/d2e72aae-6d4b-4e0a-9d5e-02d8f828ab9e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_idle/layers/87000bbd-ed74-44f0-86bd-d9c2a27979ca/d2e72aae-6d4b-4e0a-9d5e-02d8f828ab9e.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_idle/layers/8e15a896-47dd-46f6-b526-7c855188d9e4/d2e72aae-6d4b-4e0a-9d5e-02d8f828ab9e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_idle/layers/8e15a896-47dd-46f6-b526-7c855188d9e4/d2e72aae-6d4b-4e0a-9d5e-02d8f828ab9e.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_idle/layers/bde3e5d3-6640-4f1b-871f-483bb93ec993/d2e72aae-6d4b-4e0a-9d5e-02d8f828ab9e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_idle/layers/bde3e5d3-6640-4f1b-871f-483bb93ec993/d2e72aae-6d4b-4e0a-9d5e-02d8f828ab9e.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_idle/layers/e73c0915-9aff-4a72-8d89-e3c04d40bc48/d2e72aae-6d4b-4e0a-9d5e-02d8f828ab9e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_idle/layers/e73c0915-9aff-4a72-8d89-e3c04d40bc48/d2e72aae-6d4b-4e0a-9d5e-02d8f828ab9e.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_idle/layers/eb9829f8-6755-4457-a183-58e573a5f9ef/d2e72aae-6d4b-4e0a-9d5e-02d8f828ab9e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_idle/layers/eb9829f8-6755-4457-a183-58e573a5f9ef/d2e72aae-6d4b-4e0a-9d5e-02d8f828ab9e.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_jump_up/69830041-44d2-403e-a95c-11d1a19fbd46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_jump_up/69830041-44d2-403e-a95c-11d1a19fbd46.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_jump_up/82a87c1b-f41f-461f-a5ea-940bac0d6592.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_jump_up/82a87c1b-f41f-461f-a5ea-940bac0d6592.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_jump_up/layers/69830041-44d2-403e-a95c-11d1a19fbd46/a6a4f135-4044-43fa-9a05-a6675a12cf5d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_jump_up/layers/69830041-44d2-403e-a95c-11d1a19fbd46/a6a4f135-4044-43fa-9a05-a6675a12cf5d.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_jump_up/layers/82a87c1b-f41f-461f-a5ea-940bac0d6592/c41b5363-c3f1-4edd-9679-a6f2a5d6d22d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_jump_up/layers/82a87c1b-f41f-461f-a5ea-940bac0d6592/c41b5363-c3f1-4edd-9679-a6f2a5d6d22d.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_run/40393d2c-3ad7-49b4-a28e-4df90da800c4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_run/40393d2c-3ad7-49b4-a28e-4df90da800c4.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_run/79bc57fc-4b6d-40b7-a6e4-0fa7f6b51aa4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_run/79bc57fc-4b6d-40b7-a6e4-0fa7f6b51aa4.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_run/9fa169c1-71fd-4f57-8e58-0689e3a17787.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_run/9fa169c1-71fd-4f57-8e58-0689e3a17787.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_run/a50c6349-254c-4797-a8a1-2b7f77cb3336.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_run/a50c6349-254c-4797-a8a1-2b7f77cb3336.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_run/b50e0e07-b327-46e4-85c4-683ec7e584e1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_run/b50e0e07-b327-46e4-85c4-683ec7e584e1.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_run/ca93c8a7-cdf7-4101-a1f1-dc4b7558bb69.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_run/ca93c8a7-cdf7-4101-a1f1-dc4b7558bb69.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_run/d01e0b79-aa8a-43ac-8174-aefd2b3c1861.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_run/d01e0b79-aa8a-43ac-8174-aefd2b3c1861.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_run/e4859d77-1190-4df0-a480-d2162b3c2281.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_run/e4859d77-1190-4df0-a480-d2162b3c2281.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_run/ea3f3945-9413-4b79-aea7-36a19cb9aa7b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_run/ea3f3945-9413-4b79-aea7-36a19cb9aa7b.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_run/layers/40393d2c-3ad7-49b4-a28e-4df90da800c4/6155f7b5-9757-43ad-b426-2a39da350b06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_run/layers/40393d2c-3ad7-49b4-a28e-4df90da800c4/6155f7b5-9757-43ad-b426-2a39da350b06.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_run/layers/79bc57fc-4b6d-40b7-a6e4-0fa7f6b51aa4/6155f7b5-9757-43ad-b426-2a39da350b06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_run/layers/79bc57fc-4b6d-40b7-a6e4-0fa7f6b51aa4/6155f7b5-9757-43ad-b426-2a39da350b06.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_run/layers/9fa169c1-71fd-4f57-8e58-0689e3a17787/6155f7b5-9757-43ad-b426-2a39da350b06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_run/layers/9fa169c1-71fd-4f57-8e58-0689e3a17787/6155f7b5-9757-43ad-b426-2a39da350b06.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_run/layers/a50c6349-254c-4797-a8a1-2b7f77cb3336/6155f7b5-9757-43ad-b426-2a39da350b06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_run/layers/a50c6349-254c-4797-a8a1-2b7f77cb3336/6155f7b5-9757-43ad-b426-2a39da350b06.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_run/layers/b50e0e07-b327-46e4-85c4-683ec7e584e1/6155f7b5-9757-43ad-b426-2a39da350b06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_run/layers/b50e0e07-b327-46e4-85c4-683ec7e584e1/6155f7b5-9757-43ad-b426-2a39da350b06.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_run/layers/ca93c8a7-cdf7-4101-a1f1-dc4b7558bb69/6155f7b5-9757-43ad-b426-2a39da350b06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_run/layers/ca93c8a7-cdf7-4101-a1f1-dc4b7558bb69/6155f7b5-9757-43ad-b426-2a39da350b06.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_run/layers/d01e0b79-aa8a-43ac-8174-aefd2b3c1861/10d9fb51-ebe2-4a62-968f-0e596103e088.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_run/layers/d01e0b79-aa8a-43ac-8174-aefd2b3c1861/10d9fb51-ebe2-4a62-968f-0e596103e088.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_run/layers/e4859d77-1190-4df0-a480-d2162b3c2281/6155f7b5-9757-43ad-b426-2a39da350b06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_run/layers/e4859d77-1190-4df0-a480-d2162b3c2281/6155f7b5-9757-43ad-b426-2a39da350b06.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_run/layers/ea3f3945-9413-4b79-aea7-36a19cb9aa7b/6155f7b5-9757-43ad-b426-2a39da350b06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/lochzahn_run/layers/ea3f3945-9413-4b79-aea7-36a19cb9aa7b/6155f7b5-9757-43ad-b426-2a39da350b06.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/moving_platform/cae5bd62-582f-46d0-9d7b-b68383368002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/moving_platform/cae5bd62-582f-46d0-9d7b-b68383368002.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/moving_platform/layers/cae5bd62-582f-46d0-9d7b-b68383368002/8be0a2c9-883a-4a97-a722-f31d906276de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/moving_platform/layers/cae5bd62-582f-46d0-9d7b-b68383368002/8be0a2c9-883a-4a97-a722-f31d906276de.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/one_way_platform/9d8675bb-d627-44d5-8dab-6f618a08ea6f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/one_way_platform/9d8675bb-d627-44d5-8dab-6f618a08ea6f.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/one_way_platform/layers/9d8675bb-d627-44d5-8dab-6f618a08ea6f/80d8505a-852b-4999-8518-cf0315a3cbf4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/one_way_platform/layers/9d8675bb-d627-44d5-8dab-6f618a08ea6f/80d8505a-852b-4999-8518-cf0315a3cbf4.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/palette/c316e45d-324b-4fe3-9b8b-318603b24c77.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/palette/c316e45d-324b-4fe3-9b8b-318603b24c77.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/palette/layers/c316e45d-324b-4fe3-9b8b-318603b24c77/d969c6de-0370-4fac-95ae-1f573147e0ec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/palette/layers/c316e45d-324b-4fe3-9b8b-318603b24c77/d969c6de-0370-4fac-95ae-1f573147e0ec.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/palette/palette.yy: -------------------------------------------------------------------------------- 1 | { 2 | "$GMSprite":"", 3 | "%Name":"palette", 4 | "bboxMode":0, 5 | "bbox_bottom":213, 6 | "bbox_left":0, 7 | "bbox_right":527, 8 | "bbox_top":0, 9 | "collisionKind":1, 10 | "collisionTolerance":0, 11 | "DynamicTexturePage":false, 12 | "edgeFiltering":false, 13 | "For3D":false, 14 | "frames":[ 15 | {"$GMSpriteFrame":"","%Name":"c316e45d-324b-4fe3-9b8b-318603b24c77","name":"c316e45d-324b-4fe3-9b8b-318603b24c77","resourceType":"GMSpriteFrame","resourceVersion":"2.0",}, 16 | ], 17 | "gridX":0, 18 | "gridY":0, 19 | "height":214, 20 | "HTile":false, 21 | "layers":[ 22 | {"$GMImageLayer":"","%Name":"d969c6de-0370-4fac-95ae-1f573147e0ec","blendMode":0,"displayName":"default","isLocked":false,"name":"d969c6de-0370-4fac-95ae-1f573147e0ec","opacity":100.0,"resourceType":"GMImageLayer","resourceVersion":"2.0","visible":true,}, 23 | ], 24 | "name":"palette", 25 | "nineSlice":null, 26 | "origin":0, 27 | "parent":{ 28 | "name":"Backgrounds", 29 | "path":"folders/Sprites/Backgrounds.yy", 30 | }, 31 | "preMultiplyAlpha":false, 32 | "resourceType":"GMSprite", 33 | "resourceVersion":"2.0", 34 | "sequence":{ 35 | "$GMSequence":"", 36 | "%Name":"palette", 37 | "autoRecord":true, 38 | "backdropHeight":768, 39 | "backdropImageOpacity":0.5, 40 | "backdropImagePath":"", 41 | "backdropWidth":1366, 42 | "backdropXOffset":0.0, 43 | "backdropYOffset":0.0, 44 | "events":{ 45 | "$KeyframeStore":"", 46 | "Keyframes":[], 47 | "resourceType":"KeyframeStore", 48 | "resourceVersion":"2.0", 49 | }, 50 | "eventStubScript":null, 51 | "eventToFunction":{}, 52 | "length":1.0, 53 | "lockOrigin":false, 54 | "moments":{ 55 | "$KeyframeStore":"", 56 | "Keyframes":[], 57 | "resourceType":"KeyframeStore", 58 | "resourceVersion":"2.0", 59 | }, 60 | "name":"palette", 61 | "playback":1, 62 | "playbackSpeed":30.0, 63 | "playbackSpeedType":0, 64 | "resourceType":"GMSequence", 65 | "resourceVersion":"2.0", 66 | "showBackdrop":true, 67 | "showBackdropImage":false, 68 | "timeUnits":1, 69 | "tracks":[ 70 | {"$GMSpriteFramesTrack":"","builtinName":0,"events":[],"inheritsTrackColour":true,"interpolation":1,"isCreationTrack":false,"keyframes":{"$KeyframeStore":"","Keyframes":[ 71 | {"$Keyframe":"","Channels":{ 72 | "0":{"$SpriteFrameKeyframe":"","Id":{"name":"c316e45d-324b-4fe3-9b8b-318603b24c77","path":"sprites/palette/palette.yy",},"resourceType":"SpriteFrameKeyframe","resourceVersion":"2.0",}, 73 | },"Disabled":false,"id":"90176f7e-ed23-405d-b9e4-b6611b5a265d","IsCreationKey":false,"Key":0.0,"Length":1.0,"resourceType":"Keyframe","resourceVersion":"2.0","Stretch":false,}, 74 | ],"resourceType":"KeyframeStore","resourceVersion":"2.0",},"modifiers":[],"name":"frames","resourceType":"GMSpriteFramesTrack","resourceVersion":"2.0","spriteId":null,"trackColour":0,"tracks":[],"traits":0,}, 75 | ], 76 | "visibleRange":null, 77 | "volume":1.0, 78 | "xorigin":0, 79 | "yorigin":0, 80 | }, 81 | "swatchColours":null, 82 | "swfPrecision":2.525, 83 | "textureGroupId":{ 84 | "name":"Default", 85 | "path":"texturegroups/Default", 86 | }, 87 | "type":0, 88 | "VTile":false, 89 | "width":528, 90 | } -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/pin_image/8fcb75bd-c076-4f0e-821d-e3d0c0c4b74d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/pin_image/8fcb75bd-c076-4f0e-821d-e3d0c0c4b74d.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/pin_image/layers/8fcb75bd-c076-4f0e-821d-e3d0c0c4b74d/f42814e0-131f-4008-b578-02d37cb13a87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/pin_image/layers/8fcb75bd-c076-4f0e-821d-e3d0c0c4b74d/f42814e0-131f-4008-b578-02d37cb13a87.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/pin_image/pin_image.yy: -------------------------------------------------------------------------------- 1 | { 2 | "$GMSprite":"", 3 | "%Name":"pin_image", 4 | "bboxMode":0, 5 | "bbox_bottom":56, 6 | "bbox_left":9, 7 | "bbox_right":28, 8 | "bbox_top":14, 9 | "collisionKind":1, 10 | "collisionTolerance":0, 11 | "DynamicTexturePage":false, 12 | "edgeFiltering":false, 13 | "For3D":false, 14 | "frames":[ 15 | {"$GMSpriteFrame":"","%Name":"8fcb75bd-c076-4f0e-821d-e3d0c0c4b74d","name":"8fcb75bd-c076-4f0e-821d-e3d0c0c4b74d","resourceType":"GMSpriteFrame","resourceVersion":"2.0",}, 16 | ], 17 | "gridX":0, 18 | "gridY":0, 19 | "height":80, 20 | "HTile":false, 21 | "layers":[ 22 | {"$GMImageLayer":"","%Name":"f42814e0-131f-4008-b578-02d37cb13a87","blendMode":0,"displayName":"default","isLocked":false,"name":"f42814e0-131f-4008-b578-02d37cb13a87","opacity":100.0,"resourceType":"GMImageLayer","resourceVersion":"2.0","visible":true,}, 23 | ], 24 | "name":"pin_image", 25 | "nineSlice":null, 26 | "origin":0, 27 | "parent":{ 28 | "name":"YanKandy", 29 | "path":"folders/Sprites/YanKandy.yy", 30 | }, 31 | "preMultiplyAlpha":false, 32 | "resourceType":"GMSprite", 33 | "resourceVersion":"2.0", 34 | "sequence":{ 35 | "$GMSequence":"", 36 | "%Name":"pin_image", 37 | "autoRecord":true, 38 | "backdropHeight":768, 39 | "backdropImageOpacity":0.5, 40 | "backdropImagePath":"", 41 | "backdropWidth":1366, 42 | "backdropXOffset":0.0, 43 | "backdropYOffset":0.0, 44 | "events":{ 45 | "$KeyframeStore":"", 46 | "Keyframes":[], 47 | "resourceType":"KeyframeStore", 48 | "resourceVersion":"2.0", 49 | }, 50 | "eventStubScript":null, 51 | "eventToFunction":{}, 52 | "length":1.0, 53 | "lockOrigin":false, 54 | "moments":{ 55 | "$KeyframeStore":"", 56 | "Keyframes":[], 57 | "resourceType":"KeyframeStore", 58 | "resourceVersion":"2.0", 59 | }, 60 | "name":"pin_image", 61 | "playback":1, 62 | "playbackSpeed":30.0, 63 | "playbackSpeedType":0, 64 | "resourceType":"GMSequence", 65 | "resourceVersion":"2.0", 66 | "showBackdrop":true, 67 | "showBackdropImage":false, 68 | "timeUnits":1, 69 | "tracks":[ 70 | {"$GMSpriteFramesTrack":"","builtinName":0,"events":[],"inheritsTrackColour":true,"interpolation":1,"isCreationTrack":false,"keyframes":{"$KeyframeStore":"","Keyframes":[ 71 | {"$Keyframe":"","Channels":{ 72 | "0":{"$SpriteFrameKeyframe":"","Id":{"name":"8fcb75bd-c076-4f0e-821d-e3d0c0c4b74d","path":"sprites/pin_image/pin_image.yy",},"resourceType":"SpriteFrameKeyframe","resourceVersion":"2.0",}, 73 | },"Disabled":false,"id":"6221b338-a7ff-4878-b549-659555318dfc","IsCreationKey":false,"Key":0.0,"Length":1.0,"resourceType":"Keyframe","resourceVersion":"2.0","Stretch":false,}, 74 | ],"resourceType":"KeyframeStore","resourceVersion":"2.0",},"modifiers":[],"name":"frames","resourceType":"GMSpriteFramesTrack","resourceVersion":"2.0","spriteId":null,"trackColour":0,"tracks":[],"traits":0,}, 75 | ], 76 | "visibleRange":null, 77 | "volume":1.0, 78 | "xorigin":0, 79 | "yorigin":0, 80 | }, 81 | "swatchColours":null, 82 | "swfPrecision":2.525, 83 | "textureGroupId":{ 84 | "name":"Default", 85 | "path":"texturegroups/Default", 86 | }, 87 | "type":0, 88 | "VTile":false, 89 | "width":40, 90 | } -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/scn1_menu_bg/a9b9e5f7-2027-4b49-8b27-f495051c81a6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/scn1_menu_bg/a9b9e5f7-2027-4b49-8b27-f495051c81a6.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/scn1_menu_bg/layers/a9b9e5f7-2027-4b49-8b27-f495051c81a6/fb0abafc-dcc4-4f82-ab58-c7dcd1d0d2d5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/scn1_menu_bg/layers/a9b9e5f7-2027-4b49-8b27-f495051c81a6/fb0abafc-dcc4-4f82-ab58-c7dcd1d0d2d5.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/scn1_menu_bg/scn1_menu_bg.yy: -------------------------------------------------------------------------------- 1 | { 2 | "$GMSprite":"", 3 | "%Name":"scn1_menu_bg", 4 | "bboxMode":0, 5 | "bbox_bottom":287, 6 | "bbox_left":0, 7 | "bbox_right":511, 8 | "bbox_top":0, 9 | "collisionKind":1, 10 | "collisionTolerance":0, 11 | "DynamicTexturePage":false, 12 | "edgeFiltering":false, 13 | "For3D":false, 14 | "frames":[ 15 | {"$GMSpriteFrame":"","%Name":"a9b9e5f7-2027-4b49-8b27-f495051c81a6","name":"a9b9e5f7-2027-4b49-8b27-f495051c81a6","resourceType":"GMSpriteFrame","resourceVersion":"2.0",}, 16 | ], 17 | "gridX":0, 18 | "gridY":0, 19 | "height":288, 20 | "HTile":false, 21 | "layers":[ 22 | {"$GMImageLayer":"","%Name":"fb0abafc-dcc4-4f82-ab58-c7dcd1d0d2d5","blendMode":0,"displayName":"default","isLocked":false,"name":"fb0abafc-dcc4-4f82-ab58-c7dcd1d0d2d5","opacity":100.0,"resourceType":"GMImageLayer","resourceVersion":"2.0","visible":true,}, 23 | ], 24 | "name":"scn1_menu_bg", 25 | "nineSlice":null, 26 | "origin":0, 27 | "parent":{ 28 | "name":"Menu", 29 | "path":"folders/Sprites/Menu.yy", 30 | }, 31 | "preMultiplyAlpha":false, 32 | "resourceType":"GMSprite", 33 | "resourceVersion":"2.0", 34 | "sequence":{ 35 | "$GMSequence":"", 36 | "%Name":"scn1_menu_bg", 37 | "autoRecord":true, 38 | "backdropHeight":768, 39 | "backdropImageOpacity":0.5, 40 | "backdropImagePath":"", 41 | "backdropWidth":1366, 42 | "backdropXOffset":0.0, 43 | "backdropYOffset":0.0, 44 | "events":{ 45 | "$KeyframeStore":"", 46 | "Keyframes":[], 47 | "resourceType":"KeyframeStore", 48 | "resourceVersion":"2.0", 49 | }, 50 | "eventStubScript":null, 51 | "eventToFunction":{}, 52 | "length":1.0, 53 | "lockOrigin":false, 54 | "moments":{ 55 | "$KeyframeStore":"", 56 | "Keyframes":[], 57 | "resourceType":"KeyframeStore", 58 | "resourceVersion":"2.0", 59 | }, 60 | "name":"scn1_menu_bg", 61 | "playback":1, 62 | "playbackSpeed":30.0, 63 | "playbackSpeedType":0, 64 | "resourceType":"GMSequence", 65 | "resourceVersion":"2.0", 66 | "showBackdrop":true, 67 | "showBackdropImage":false, 68 | "timeUnits":1, 69 | "tracks":[ 70 | {"$GMSpriteFramesTrack":"","builtinName":0,"events":[],"inheritsTrackColour":true,"interpolation":1,"isCreationTrack":false,"keyframes":{"$KeyframeStore":"","Keyframes":[ 71 | {"$Keyframe":"","Channels":{ 72 | "0":{"$SpriteFrameKeyframe":"","Id":{"name":"a9b9e5f7-2027-4b49-8b27-f495051c81a6","path":"sprites/scn1_menu_bg/scn1_menu_bg.yy",},"resourceType":"SpriteFrameKeyframe","resourceVersion":"2.0",}, 73 | },"Disabled":false,"id":"daa54203-4d05-4939-867f-1a22e604cf28","IsCreationKey":false,"Key":0.0,"Length":1.0,"resourceType":"Keyframe","resourceVersion":"2.0","Stretch":false,}, 74 | ],"resourceType":"KeyframeStore","resourceVersion":"2.0",},"modifiers":[],"name":"frames","resourceType":"GMSpriteFramesTrack","resourceVersion":"2.0","spriteId":null,"trackColour":0,"tracks":[],"traits":0,}, 75 | ], 76 | "visibleRange":null, 77 | "volume":1.0, 78 | "xorigin":0, 79 | "yorigin":0, 80 | }, 81 | "swatchColours":null, 82 | "swfPrecision":2.525, 83 | "textureGroupId":{ 84 | "name":"Default", 85 | "path":"texturegroups/Default", 86 | }, 87 | "type":0, 88 | "VTile":false, 89 | "width":512, 90 | } -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/scn1_menu_gametitle_EN/ea480140-780c-4d60-a608-75dcd1c581dd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/scn1_menu_gametitle_EN/ea480140-780c-4d60-a608-75dcd1c581dd.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/scn1_menu_gametitle_EN/layers/ea480140-780c-4d60-a608-75dcd1c581dd/caf4db20-77c2-4e64-b02c-d7e68a0ad8da.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/scn1_menu_gametitle_EN/layers/ea480140-780c-4d60-a608-75dcd1c581dd/caf4db20-77c2-4e64-b02c-d7e68a0ad8da.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/scn1_menu_gametitle_EN/layers/ea480140-780c-4d60-a608-75dcd1c581dd/e80f0128-da58-4baa-977b-853bf2848917.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/scn1_menu_gametitle_EN/layers/ea480140-780c-4d60-a608-75dcd1c581dd/e80f0128-da58-4baa-977b-853bf2848917.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/scroll_bg_cloud_1/07f892ab-8edd-4714-a1c4-70096800ec09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/scroll_bg_cloud_1/07f892ab-8edd-4714-a1c4-70096800ec09.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/scroll_bg_cloud_1/layers/07f892ab-8edd-4714-a1c4-70096800ec09/bd3349aa-d037-45bc-86a7-2ab9bb02577f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/scroll_bg_cloud_1/layers/07f892ab-8edd-4714-a1c4-70096800ec09/bd3349aa-d037-45bc-86a7-2ab9bb02577f.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/scroll_bg_cloud_2/c7fe493d-1cb5-4ae0-ac9c-3632647c1968.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/scroll_bg_cloud_2/c7fe493d-1cb5-4ae0-ac9c-3632647c1968.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/scroll_bg_cloud_2/layers/c7fe493d-1cb5-4ae0-ac9c-3632647c1968/fa63b362-e673-449a-9afa-a1731ddba5c4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/scroll_bg_cloud_2/layers/c7fe493d-1cb5-4ae0-ac9c-3632647c1968/fa63b362-e673-449a-9afa-a1731ddba5c4.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/scroll_bg_cloud_3/194c7002-5db1-4d30-ad08-a3bbd470b9a3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/scroll_bg_cloud_3/194c7002-5db1-4d30-ad08-a3bbd470b9a3.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/scroll_bg_cloud_3/layers/194c7002-5db1-4d30-ad08-a3bbd470b9a3/549eb4cd-3c58-499e-a002-ef2285a8c4b9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/scroll_bg_cloud_3/layers/194c7002-5db1-4d30-ad08-a3bbd470b9a3/549eb4cd-3c58-499e-a002-ef2285a8c4b9.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/scroll_bg_fg_2/5a37fb63-ab87-456e-ae95-27696cdf069b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/scroll_bg_fg_2/5a37fb63-ab87-456e-ae95-27696cdf069b.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/scroll_bg_fg_2/layers/5a37fb63-ab87-456e-ae95-27696cdf069b/f9b80ccb-6431-4c63-91ca-521e67de7e42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/scroll_bg_fg_2/layers/5a37fb63-ab87-456e-ae95-27696cdf069b/f9b80ccb-6431-4c63-91ca-521e67de7e42.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/scroll_bg_sky/71e79da5-8ef5-4a9a-bc0c-412d6aa4d949.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/scroll_bg_sky/71e79da5-8ef5-4a9a-bc0c-412d6aa4d949.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/scroll_bg_sky/layers/71e79da5-8ef5-4a9a-bc0c-412d6aa4d949/fb15f3fa-d066-49b4-b702-d52001c7bf89.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/scroll_bg_sky/layers/71e79da5-8ef5-4a9a-bc0c-412d6aa4d949/fb15f3fa-d066-49b4-b702-d52001c7bf89.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/scroll_bg_sky/scroll_bg_sky.yy: -------------------------------------------------------------------------------- 1 | { 2 | "$GMSprite":"", 3 | "%Name":"scroll_bg_sky", 4 | "bboxMode":0, 5 | "bbox_bottom":511, 6 | "bbox_left":0, 7 | "bbox_right":31, 8 | "bbox_top":0, 9 | "collisionKind":1, 10 | "collisionTolerance":0, 11 | "DynamicTexturePage":false, 12 | "edgeFiltering":false, 13 | "For3D":false, 14 | "frames":[ 15 | {"$GMSpriteFrame":"","%Name":"71e79da5-8ef5-4a9a-bc0c-412d6aa4d949","name":"71e79da5-8ef5-4a9a-bc0c-412d6aa4d949","resourceType":"GMSpriteFrame","resourceVersion":"2.0",}, 16 | ], 17 | "gridX":0, 18 | "gridY":0, 19 | "height":512, 20 | "HTile":false, 21 | "layers":[ 22 | {"$GMImageLayer":"","%Name":"fb15f3fa-d066-49b4-b702-d52001c7bf89","blendMode":0,"displayName":"default","isLocked":false,"name":"fb15f3fa-d066-49b4-b702-d52001c7bf89","opacity":100.0,"resourceType":"GMImageLayer","resourceVersion":"2.0","visible":true,}, 23 | ], 24 | "name":"scroll_bg_sky", 25 | "nineSlice":null, 26 | "origin":0, 27 | "parent":{ 28 | "name":"Backgrounds", 29 | "path":"folders/Sprites/Backgrounds.yy", 30 | }, 31 | "preMultiplyAlpha":false, 32 | "resourceType":"GMSprite", 33 | "resourceVersion":"2.0", 34 | "sequence":{ 35 | "$GMSequence":"", 36 | "%Name":"scroll_bg_sky", 37 | "autoRecord":true, 38 | "backdropHeight":768, 39 | "backdropImageOpacity":0.5, 40 | "backdropImagePath":"", 41 | "backdropWidth":1366, 42 | "backdropXOffset":0.0, 43 | "backdropYOffset":0.0, 44 | "events":{ 45 | "$KeyframeStore":"", 46 | "Keyframes":[], 47 | "resourceType":"KeyframeStore", 48 | "resourceVersion":"2.0", 49 | }, 50 | "eventStubScript":null, 51 | "eventToFunction":{}, 52 | "length":1.0, 53 | "lockOrigin":false, 54 | "moments":{ 55 | "$KeyframeStore":"", 56 | "Keyframes":[], 57 | "resourceType":"KeyframeStore", 58 | "resourceVersion":"2.0", 59 | }, 60 | "name":"scroll_bg_sky", 61 | "playback":1, 62 | "playbackSpeed":30.0, 63 | "playbackSpeedType":0, 64 | "resourceType":"GMSequence", 65 | "resourceVersion":"2.0", 66 | "showBackdrop":true, 67 | "showBackdropImage":false, 68 | "timeUnits":1, 69 | "tracks":[ 70 | {"$GMSpriteFramesTrack":"","builtinName":0,"events":[],"inheritsTrackColour":true,"interpolation":1,"isCreationTrack":false,"keyframes":{"$KeyframeStore":"","Keyframes":[ 71 | {"$Keyframe":"","Channels":{ 72 | "0":{"$SpriteFrameKeyframe":"","Id":{"name":"71e79da5-8ef5-4a9a-bc0c-412d6aa4d949","path":"sprites/scroll_bg_sky/scroll_bg_sky.yy",},"resourceType":"SpriteFrameKeyframe","resourceVersion":"2.0",}, 73 | },"Disabled":false,"id":"2116947c-3200-4e3c-baac-5733629259c5","IsCreationKey":false,"Key":0.0,"Length":1.0,"resourceType":"Keyframe","resourceVersion":"2.0","Stretch":false,}, 74 | ],"resourceType":"KeyframeStore","resourceVersion":"2.0",},"modifiers":[],"name":"frames","resourceType":"GMSpriteFramesTrack","resourceVersion":"2.0","spriteId":null,"trackColour":0,"tracks":[],"traits":0,}, 75 | ], 76 | "visibleRange":null, 77 | "volume":1.0, 78 | "xorigin":0, 79 | "yorigin":0, 80 | }, 81 | "swatchColours":null, 82 | "swfPrecision":2.525, 83 | "textureGroupId":{ 84 | "name":"Default", 85 | "path":"texturegroups/Default", 86 | }, 87 | "type":0, 88 | "VTile":false, 89 | "width":32, 90 | } -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/ship_cutscene/a4217571-7ac1-4309-b069-d79cc806d95d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/ship_cutscene/a4217571-7ac1-4309-b069-d79cc806d95d.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/ship_cutscene/layers/a4217571-7ac1-4309-b069-d79cc806d95d/1f669938-a27b-4b6e-b49a-253a799ec6ca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/ship_cutscene/layers/a4217571-7ac1-4309-b069-d79cc806d95d/1f669938-a27b-4b6e-b49a-253a799ec6ca.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/skull_eye/a9f7045c-1e85-4d1b-9bce-9d185905c73e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/skull_eye/a9f7045c-1e85-4d1b-9bce-9d185905c73e.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/skull_eye/layers/a9f7045c-1e85-4d1b-9bce-9d185905c73e/fa14a7e2-12d7-47bd-98f6-5e32b2965e29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/skull_eye/layers/a9f7045c-1e85-4d1b-9bce-9d185905c73e/fa14a7e2-12d7-47bd-98f6-5e32b2965e29.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/skull_eye/skull_eye.yy: -------------------------------------------------------------------------------- 1 | { 2 | "$GMSprite":"", 3 | "%Name":"skull_eye", 4 | "bboxMode":0, 5 | "bbox_bottom":11, 6 | "bbox_left":4, 7 | "bbox_right":10, 8 | "bbox_top":4, 9 | "collisionKind":1, 10 | "collisionTolerance":0, 11 | "DynamicTexturePage":false, 12 | "edgeFiltering":false, 13 | "For3D":false, 14 | "frames":[ 15 | {"$GMSpriteFrame":"","%Name":"a9f7045c-1e85-4d1b-9bce-9d185905c73e","name":"a9f7045c-1e85-4d1b-9bce-9d185905c73e","resourceType":"GMSpriteFrame","resourceVersion":"2.0",}, 16 | ], 17 | "gridX":0, 18 | "gridY":0, 19 | "height":16, 20 | "HTile":false, 21 | "layers":[ 22 | {"$GMImageLayer":"","%Name":"fa14a7e2-12d7-47bd-98f6-5e32b2965e29","blendMode":0,"displayName":"default","isLocked":false,"name":"fa14a7e2-12d7-47bd-98f6-5e32b2965e29","opacity":100.0,"resourceType":"GMImageLayer","resourceVersion":"2.0","visible":true,}, 23 | ], 24 | "name":"skull_eye", 25 | "nineSlice":null, 26 | "origin":0, 27 | "parent":{ 28 | "name":"Menu", 29 | "path":"folders/Sprites/Menu.yy", 30 | }, 31 | "preMultiplyAlpha":false, 32 | "resourceType":"GMSprite", 33 | "resourceVersion":"2.0", 34 | "sequence":{ 35 | "$GMSequence":"", 36 | "%Name":"skull_eye", 37 | "autoRecord":true, 38 | "backdropHeight":768, 39 | "backdropImageOpacity":0.5, 40 | "backdropImagePath":"", 41 | "backdropWidth":1366, 42 | "backdropXOffset":0.0, 43 | "backdropYOffset":0.0, 44 | "events":{ 45 | "$KeyframeStore":"", 46 | "Keyframes":[], 47 | "resourceType":"KeyframeStore", 48 | "resourceVersion":"2.0", 49 | }, 50 | "eventStubScript":null, 51 | "eventToFunction":{}, 52 | "length":1.0, 53 | "lockOrigin":false, 54 | "moments":{ 55 | "$KeyframeStore":"", 56 | "Keyframes":[], 57 | "resourceType":"KeyframeStore", 58 | "resourceVersion":"2.0", 59 | }, 60 | "name":"skull_eye", 61 | "playback":1, 62 | "playbackSpeed":30.0, 63 | "playbackSpeedType":0, 64 | "resourceType":"GMSequence", 65 | "resourceVersion":"2.0", 66 | "showBackdrop":true, 67 | "showBackdropImage":false, 68 | "timeUnits":1, 69 | "tracks":[ 70 | {"$GMSpriteFramesTrack":"","builtinName":0,"events":[],"inheritsTrackColour":true,"interpolation":1,"isCreationTrack":false,"keyframes":{"$KeyframeStore":"","Keyframes":[ 71 | {"$Keyframe":"","Channels":{ 72 | "0":{"$SpriteFrameKeyframe":"","Id":{"name":"a9f7045c-1e85-4d1b-9bce-9d185905c73e","path":"sprites/skull_eye/skull_eye.yy",},"resourceType":"SpriteFrameKeyframe","resourceVersion":"2.0",}, 73 | },"Disabled":false,"id":"46035aad-0160-4c33-a765-0eea377a0b39","IsCreationKey":false,"Key":0.0,"Length":1.0,"resourceType":"Keyframe","resourceVersion":"2.0","Stretch":false,}, 74 | ],"resourceType":"KeyframeStore","resourceVersion":"2.0",},"modifiers":[],"name":"frames","resourceType":"GMSpriteFramesTrack","resourceVersion":"2.0","spriteId":null,"trackColour":0,"tracks":[],"traits":0,}, 75 | ], 76 | "visibleRange":null, 77 | "volume":1.0, 78 | "xorigin":0, 79 | "yorigin":0, 80 | }, 81 | "swatchColours":null, 82 | "swfPrecision":2.525, 83 | "textureGroupId":{ 84 | "name":"Default", 85 | "path":"texturegroups/Default", 86 | }, 87 | "type":0, 88 | "VTile":false, 89 | "width":16, 90 | } -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/small_one_way_platform/c176dce4-3f97-466a-a70e-06d8d6d6714a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/small_one_way_platform/c176dce4-3f97-466a-a70e-06d8d6d6714a.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/small_one_way_platform/layers/c176dce4-3f97-466a-a70e-06d8d6d6714a/f0e2243f-de1b-49ff-a43d-1e90521710d7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/small_one_way_platform/layers/c176dce4-3f97-466a-a70e-06d8d6d6714a/f0e2243f-de1b-49ff-a43d-1e90521710d7.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/splash_screen_lochzahn_candy_hat/06e7171d-5753-44b2-9682-4f7b03db59d6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/splash_screen_lochzahn_candy_hat/06e7171d-5753-44b2-9682-4f7b03db59d6.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/splash_screen_lochzahn_candy_hat/30e9baf5-da14-4b0d-ac1d-1fb2c468a789.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/splash_screen_lochzahn_candy_hat/30e9baf5-da14-4b0d-ac1d-1fb2c468a789.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/splash_screen_lochzahn_candy_hat/bc3b4f97-f7a9-4dba-9703-40ed2e601377.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/splash_screen_lochzahn_candy_hat/bc3b4f97-f7a9-4dba-9703-40ed2e601377.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/splash_screen_lochzahn_candy_hat/layers/06e7171d-5753-44b2-9682-4f7b03db59d6/85ae331b-9511-47cd-8aba-d9c00974e905.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/splash_screen_lochzahn_candy_hat/layers/06e7171d-5753-44b2-9682-4f7b03db59d6/85ae331b-9511-47cd-8aba-d9c00974e905.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/splash_screen_lochzahn_candy_hat/layers/30e9baf5-da14-4b0d-ac1d-1fb2c468a789/d7008bd6-7659-4dfc-9aa1-6e75602211e0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/splash_screen_lochzahn_candy_hat/layers/30e9baf5-da14-4b0d-ac1d-1fb2c468a789/d7008bd6-7659-4dfc-9aa1-6e75602211e0.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/splash_screen_lochzahn_candy_hat/layers/bc3b4f97-f7a9-4dba-9703-40ed2e601377/85ae331b-9511-47cd-8aba-d9c00974e905.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/splash_screen_lochzahn_candy_hat/layers/bc3b4f97-f7a9-4dba-9703-40ed2e601377/85ae331b-9511-47cd-8aba-d9c00974e905.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/splash_screen_lochzahn_single_scn1/3feda59a-f5a4-49d7-9663-7595033a79ce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/splash_screen_lochzahn_single_scn1/3feda59a-f5a4-49d7-9663-7595033a79ce.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/splash_screen_lochzahn_single_scn1/layers/3feda59a-f5a4-49d7-9663-7595033a79ce/b46796d5-0beb-48e8-b665-0ab75052ac72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/splash_screen_lochzahn_single_scn1/layers/3feda59a-f5a4-49d7-9663-7595033a79ce/b46796d5-0beb-48e8-b665-0ab75052ac72.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/splash_screen_lochzahn_single_scn1/layers/3feda59a-f5a4-49d7-9663-7595033a79ce/c2752817-6171-4d9b-9d10-a8b0a40e2362.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/splash_screen_lochzahn_single_scn1/layers/3feda59a-f5a4-49d7-9663-7595033a79ce/c2752817-6171-4d9b-9d10-a8b0a40e2362.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/splashscreen_ship_scn1/8772b573-2c79-4241-9c4a-41ba39ee9ac7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/splashscreen_ship_scn1/8772b573-2c79-4241-9c4a-41ba39ee9ac7.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/splashscreen_ship_scn1/layers/8772b573-2c79-4241-9c4a-41ba39ee9ac7/1fce4285-a58f-4f49-ac0c-afada6be3dc7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/splashscreen_ship_scn1/layers/8772b573-2c79-4241-9c4a-41ba39ee9ac7/1fce4285-a58f-4f49-ac0c-afada6be3dc7.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/texture_button_character_card/4deaec2e-f23e-4cce-9e6d-5b44df96cb3f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/texture_button_character_card/4deaec2e-f23e-4cce-9e6d-5b44df96cb3f.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/texture_button_character_card/layers/4deaec2e-f23e-4cce-9e6d-5b44df96cb3f/bf97fc77-a6e2-4c81-9309-aa2d51eea672.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/texture_button_character_card/layers/4deaec2e-f23e-4cce-9e6d-5b44df96cb3f/bf97fc77-a6e2-4c81-9309-aa2d51eea672.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/tiles_forest/c390b96b-5fc4-49de-923f-01a12674667e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/tiles_forest/c390b96b-5fc4-49de-923f-01a12674667e.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/tiles_forest/layers/c390b96b-5fc4-49de-923f-01a12674667e/8df42ad6-4fe8-4f1d-8666-78a682fa250e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/tiles_forest/layers/c390b96b-5fc4-49de-923f-01a12674667e/8df42ad6-4fe8-4f1d-8666-78a682fa250e.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/tiles_forest/tiles_forest.yy: -------------------------------------------------------------------------------- 1 | { 2 | "$GMSprite":"", 3 | "%Name":"tiles_forest", 4 | "bboxMode":0, 5 | "bbox_bottom":255, 6 | "bbox_left":0, 7 | "bbox_right":508, 8 | "bbox_top":0, 9 | "collisionKind":1, 10 | "collisionTolerance":0, 11 | "DynamicTexturePage":false, 12 | "edgeFiltering":false, 13 | "For3D":false, 14 | "frames":[ 15 | {"$GMSpriteFrame":"","%Name":"c390b96b-5fc4-49de-923f-01a12674667e","name":"c390b96b-5fc4-49de-923f-01a12674667e","resourceType":"GMSpriteFrame","resourceVersion":"2.0",}, 16 | ], 17 | "gridX":0, 18 | "gridY":0, 19 | "height":256, 20 | "HTile":false, 21 | "layers":[ 22 | {"$GMImageLayer":"","%Name":"8df42ad6-4fe8-4f1d-8666-78a682fa250e","blendMode":0,"displayName":"default","isLocked":false,"name":"8df42ad6-4fe8-4f1d-8666-78a682fa250e","opacity":100.0,"resourceType":"GMImageLayer","resourceVersion":"2.0","visible":true,}, 23 | ], 24 | "name":"tiles_forest", 25 | "nineSlice":null, 26 | "origin":0, 27 | "parent":{ 28 | "name":"Tiles", 29 | "path":"folders/Sprites/Tiles.yy", 30 | }, 31 | "preMultiplyAlpha":false, 32 | "resourceType":"GMSprite", 33 | "resourceVersion":"2.0", 34 | "sequence":{ 35 | "$GMSequence":"", 36 | "%Name":"tiles_forest", 37 | "autoRecord":true, 38 | "backdropHeight":768, 39 | "backdropImageOpacity":0.5, 40 | "backdropImagePath":"", 41 | "backdropWidth":1366, 42 | "backdropXOffset":0.0, 43 | "backdropYOffset":0.0, 44 | "events":{ 45 | "$KeyframeStore":"", 46 | "Keyframes":[], 47 | "resourceType":"KeyframeStore", 48 | "resourceVersion":"2.0", 49 | }, 50 | "eventStubScript":null, 51 | "eventToFunction":{}, 52 | "length":1.0, 53 | "lockOrigin":false, 54 | "moments":{ 55 | "$KeyframeStore":"", 56 | "Keyframes":[], 57 | "resourceType":"KeyframeStore", 58 | "resourceVersion":"2.0", 59 | }, 60 | "name":"tiles_forest", 61 | "playback":1, 62 | "playbackSpeed":30.0, 63 | "playbackSpeedType":0, 64 | "resourceType":"GMSequence", 65 | "resourceVersion":"2.0", 66 | "showBackdrop":true, 67 | "showBackdropImage":false, 68 | "timeUnits":1, 69 | "tracks":[ 70 | {"$GMSpriteFramesTrack":"","builtinName":0,"events":[],"inheritsTrackColour":true,"interpolation":1,"isCreationTrack":false,"keyframes":{"$KeyframeStore":"","Keyframes":[ 71 | {"$Keyframe":"","Channels":{ 72 | "0":{"$SpriteFrameKeyframe":"","Id":{"name":"c390b96b-5fc4-49de-923f-01a12674667e","path":"sprites/tiles_forest/tiles_forest.yy",},"resourceType":"SpriteFrameKeyframe","resourceVersion":"2.0",}, 73 | },"Disabled":false,"id":"a9f2ad81-3acb-4f09-a74c-3dcce4405233","IsCreationKey":false,"Key":0.0,"Length":1.0,"resourceType":"Keyframe","resourceVersion":"2.0","Stretch":false,}, 74 | ],"resourceType":"KeyframeStore","resourceVersion":"2.0",},"modifiers":[],"name":"frames","resourceType":"GMSpriteFramesTrack","resourceVersion":"2.0","spriteId":null,"trackColour":0,"tracks":[],"traits":0,}, 75 | ], 76 | "visibleRange":null, 77 | "volume":1.0, 78 | "xorigin":0, 79 | "yorigin":0, 80 | }, 81 | "swatchColours":null, 82 | "swfPrecision":2.525, 83 | "textureGroupId":{ 84 | "name":"Default", 85 | "path":"texturegroups/Default", 86 | }, 87 | "type":0, 88 | "VTile":false, 89 | "width":512, 90 | } -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/tiles_mountain/cd7ed556-48b9-4bf6-990e-73dc6b387e08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/tiles_mountain/cd7ed556-48b9-4bf6-990e-73dc6b387e08.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/tiles_mountain/layers/cd7ed556-48b9-4bf6-990e-73dc6b387e08/2b45d35c-599c-4be6-b13e-fc58cde4fa10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/tiles_mountain/layers/cd7ed556-48b9-4bf6-990e-73dc6b387e08/2b45d35c-599c-4be6-b13e-fc58cde4fa10.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/txt_info/49127fde-e37b-47b4-850a-f5a6e4d6badc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/txt_info/49127fde-e37b-47b4-850a-f5a6e4d6badc.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/txt_info/layers/49127fde-e37b-47b4-850a-f5a6e4d6badc/dc017b2b-8b62-4dfb-922b-ca512198324b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/txt_info/layers/49127fde-e37b-47b4-850a-f5a6e4d6badc/dc017b2b-8b62-4dfb-922b-ca512198324b.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/txt_info/txt_info.yy: -------------------------------------------------------------------------------- 1 | { 2 | "$GMSprite":"", 3 | "%Name":"txt_info", 4 | "bboxMode":0, 5 | "bbox_bottom":13, 6 | "bbox_left":4, 7 | "bbox_right":78, 8 | "bbox_top":4, 9 | "collisionKind":1, 10 | "collisionTolerance":0, 11 | "DynamicTexturePage":false, 12 | "edgeFiltering":false, 13 | "For3D":false, 14 | "frames":[ 15 | {"$GMSpriteFrame":"","%Name":"49127fde-e37b-47b4-850a-f5a6e4d6badc","name":"49127fde-e37b-47b4-850a-f5a6e4d6badc","resourceType":"GMSpriteFrame","resourceVersion":"2.0",}, 16 | ], 17 | "gridX":0, 18 | "gridY":0, 19 | "height":128, 20 | "HTile":false, 21 | "layers":[ 22 | {"$GMImageLayer":"","%Name":"dc017b2b-8b62-4dfb-922b-ca512198324b","blendMode":0,"displayName":"default","isLocked":false,"name":"dc017b2b-8b62-4dfb-922b-ca512198324b","opacity":100.0,"resourceType":"GMImageLayer","resourceVersion":"2.0","visible":true,}, 23 | ], 24 | "name":"txt_info", 25 | "nineSlice":null, 26 | "origin":0, 27 | "parent":{ 28 | "name":"Menu", 29 | "path":"folders/Sprites/Menu.yy", 30 | }, 31 | "preMultiplyAlpha":false, 32 | "resourceType":"GMSprite", 33 | "resourceVersion":"2.0", 34 | "sequence":{ 35 | "$GMSequence":"", 36 | "%Name":"txt_info", 37 | "autoRecord":true, 38 | "backdropHeight":768, 39 | "backdropImageOpacity":0.5, 40 | "backdropImagePath":"", 41 | "backdropWidth":1366, 42 | "backdropXOffset":0.0, 43 | "backdropYOffset":0.0, 44 | "events":{ 45 | "$KeyframeStore":"", 46 | "Keyframes":[], 47 | "resourceType":"KeyframeStore", 48 | "resourceVersion":"2.0", 49 | }, 50 | "eventStubScript":null, 51 | "eventToFunction":{}, 52 | "length":1.0, 53 | "lockOrigin":false, 54 | "moments":{ 55 | "$KeyframeStore":"", 56 | "Keyframes":[], 57 | "resourceType":"KeyframeStore", 58 | "resourceVersion":"2.0", 59 | }, 60 | "name":"txt_info", 61 | "playback":1, 62 | "playbackSpeed":30.0, 63 | "playbackSpeedType":0, 64 | "resourceType":"GMSequence", 65 | "resourceVersion":"2.0", 66 | "showBackdrop":true, 67 | "showBackdropImage":false, 68 | "timeUnits":1, 69 | "tracks":[ 70 | {"$GMSpriteFramesTrack":"","builtinName":0,"events":[],"inheritsTrackColour":true,"interpolation":1,"isCreationTrack":false,"keyframes":{"$KeyframeStore":"","Keyframes":[ 71 | {"$Keyframe":"","Channels":{ 72 | "0":{"$SpriteFrameKeyframe":"","Id":{"name":"49127fde-e37b-47b4-850a-f5a6e4d6badc","path":"sprites/txt_info/txt_info.yy",},"resourceType":"SpriteFrameKeyframe","resourceVersion":"2.0",}, 73 | },"Disabled":false,"id":"45d6f31f-c223-4a94-8f27-bb1075ef043f","IsCreationKey":false,"Key":0.0,"Length":1.0,"resourceType":"Keyframe","resourceVersion":"2.0","Stretch":false,}, 74 | ],"resourceType":"KeyframeStore","resourceVersion":"2.0",},"modifiers":[],"name":"frames","resourceType":"GMSpriteFramesTrack","resourceVersion":"2.0","spriteId":null,"trackColour":0,"tracks":[],"traits":0,}, 75 | ], 76 | "visibleRange":null, 77 | "volume":1.0, 78 | "xorigin":0, 79 | "yorigin":0, 80 | }, 81 | "swatchColours":null, 82 | "swfPrecision":2.525, 83 | "textureGroupId":{ 84 | "name":"Default", 85 | "path":"texturegroups/Default", 86 | }, 87 | "type":0, 88 | "VTile":false, 89 | "width":128, 90 | } -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/wand/56486fb8-6457-40b8-a260-627e7da8137a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/wand/56486fb8-6457-40b8-a260-627e7da8137a.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/wand/layers/56486fb8-6457-40b8-a260-627e7da8137a/4b851002-152b-4d2f-bb75-b5011b902af1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/wand/layers/56486fb8-6457-40b8-a260-627e7da8137a/4b851002-152b-4d2f-bb75-b5011b902af1.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/wand/wand.yy: -------------------------------------------------------------------------------- 1 | { 2 | "$GMSprite":"", 3 | "%Name":"wand", 4 | "bboxMode":0, 5 | "bbox_bottom":63, 6 | "bbox_left":0, 7 | "bbox_right":63, 8 | "bbox_top":0, 9 | "collisionKind":1, 10 | "collisionTolerance":0, 11 | "DynamicTexturePage":false, 12 | "edgeFiltering":false, 13 | "For3D":false, 14 | "frames":[ 15 | {"$GMSpriteFrame":"","%Name":"56486fb8-6457-40b8-a260-627e7da8137a","name":"56486fb8-6457-40b8-a260-627e7da8137a","resourceType":"GMSpriteFrame","resourceVersion":"2.0",}, 16 | ], 17 | "gridX":0, 18 | "gridY":0, 19 | "height":64, 20 | "HTile":false, 21 | "layers":[ 22 | {"$GMImageLayer":"","%Name":"4b851002-152b-4d2f-bb75-b5011b902af1","blendMode":0,"displayName":"default","isLocked":false,"name":"4b851002-152b-4d2f-bb75-b5011b902af1","opacity":100.0,"resourceType":"GMImageLayer","resourceVersion":"2.0","visible":true,}, 23 | ], 24 | "name":"wand", 25 | "nineSlice":null, 26 | "origin":0, 27 | "parent":{ 28 | "name":"YanKandy", 29 | "path":"folders/Sprites/YanKandy.yy", 30 | }, 31 | "preMultiplyAlpha":false, 32 | "resourceType":"GMSprite", 33 | "resourceVersion":"2.0", 34 | "sequence":{ 35 | "$GMSequence":"", 36 | "%Name":"wand", 37 | "autoRecord":true, 38 | "backdropHeight":768, 39 | "backdropImageOpacity":0.5, 40 | "backdropImagePath":"", 41 | "backdropWidth":1366, 42 | "backdropXOffset":0.0, 43 | "backdropYOffset":0.0, 44 | "events":{ 45 | "$KeyframeStore":"", 46 | "Keyframes":[], 47 | "resourceType":"KeyframeStore", 48 | "resourceVersion":"2.0", 49 | }, 50 | "eventStubScript":null, 51 | "eventToFunction":{}, 52 | "length":1.0, 53 | "lockOrigin":false, 54 | "moments":{ 55 | "$KeyframeStore":"", 56 | "Keyframes":[], 57 | "resourceType":"KeyframeStore", 58 | "resourceVersion":"2.0", 59 | }, 60 | "name":"wand", 61 | "playback":1, 62 | "playbackSpeed":30.0, 63 | "playbackSpeedType":0, 64 | "resourceType":"GMSequence", 65 | "resourceVersion":"2.0", 66 | "showBackdrop":true, 67 | "showBackdropImage":false, 68 | "timeUnits":1, 69 | "tracks":[ 70 | {"$GMSpriteFramesTrack":"","builtinName":0,"events":[],"inheritsTrackColour":true,"interpolation":1,"isCreationTrack":false,"keyframes":{"$KeyframeStore":"","Keyframes":[ 71 | {"$Keyframe":"","Channels":{ 72 | "0":{"$SpriteFrameKeyframe":"","Id":{"name":"56486fb8-6457-40b8-a260-627e7da8137a","path":"sprites/wand/wand.yy",},"resourceType":"SpriteFrameKeyframe","resourceVersion":"2.0",}, 73 | },"Disabled":false,"id":"e3e84c77-c545-44e7-8320-615b1432675d","IsCreationKey":false,"Key":0.0,"Length":1.0,"resourceType":"Keyframe","resourceVersion":"2.0","Stretch":false,}, 74 | ],"resourceType":"KeyframeStore","resourceVersion":"2.0",},"modifiers":[],"name":"frames","resourceType":"GMSpriteFramesTrack","resourceVersion":"2.0","spriteId":null,"trackColour":0,"tracks":[],"traits":0,}, 75 | ], 76 | "visibleRange":null, 77 | "volume":1.0, 78 | "xorigin":0, 79 | "yorigin":0, 80 | }, 81 | "swatchColours":null, 82 | "swfPrecision":2.525, 83 | "textureGroupId":{ 84 | "name":"Default", 85 | "path":"texturegroups/Default", 86 | }, 87 | "type":0, 88 | "VTile":false, 89 | "width":64, 90 | } -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/yan_static1/d169c9b8-0896-4f36-a985-4cf3d26f7b31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/yan_static1/d169c9b8-0896-4f36-a985-4cf3d26f7b31.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/yan_static1/layers/d169c9b8-0896-4f36-a985-4cf3d26f7b31/191e9408-29ca-4127-b376-d6a3dc1cacc5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/yan_static1/layers/d169c9b8-0896-4f36-a985-4cf3d26f7b31/191e9408-29ca-4127-b376-d6a3dc1cacc5.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/yan_static1/yan_static1.yy: -------------------------------------------------------------------------------- 1 | { 2 | "$GMSprite":"", 3 | "%Name":"yan_static1", 4 | "bboxMode":0, 5 | "bbox_bottom":83, 6 | "bbox_left":5, 7 | "bbox_right":62, 8 | "bbox_top":6, 9 | "collisionKind":1, 10 | "collisionTolerance":0, 11 | "DynamicTexturePage":false, 12 | "edgeFiltering":false, 13 | "For3D":false, 14 | "frames":[ 15 | {"$GMSpriteFrame":"","%Name":"d169c9b8-0896-4f36-a985-4cf3d26f7b31","name":"d169c9b8-0896-4f36-a985-4cf3d26f7b31","resourceType":"GMSpriteFrame","resourceVersion":"2.0",}, 16 | ], 17 | "gridX":0, 18 | "gridY":0, 19 | "height":85, 20 | "HTile":false, 21 | "layers":[ 22 | {"$GMImageLayer":"","%Name":"191e9408-29ca-4127-b376-d6a3dc1cacc5","blendMode":0,"displayName":"default","isLocked":false,"name":"191e9408-29ca-4127-b376-d6a3dc1cacc5","opacity":100.0,"resourceType":"GMImageLayer","resourceVersion":"2.0","visible":true,}, 23 | ], 24 | "name":"yan_static1", 25 | "nineSlice":null, 26 | "origin":0, 27 | "parent":{ 28 | "name":"YanKandy", 29 | "path":"folders/Sprites/YanKandy.yy", 30 | }, 31 | "preMultiplyAlpha":false, 32 | "resourceType":"GMSprite", 33 | "resourceVersion":"2.0", 34 | "sequence":{ 35 | "$GMSequence":"", 36 | "%Name":"yan_static1", 37 | "autoRecord":true, 38 | "backdropHeight":768, 39 | "backdropImageOpacity":0.5, 40 | "backdropImagePath":"", 41 | "backdropWidth":1366, 42 | "backdropXOffset":0.0, 43 | "backdropYOffset":0.0, 44 | "events":{ 45 | "$KeyframeStore":"", 46 | "Keyframes":[], 47 | "resourceType":"KeyframeStore", 48 | "resourceVersion":"2.0", 49 | }, 50 | "eventStubScript":null, 51 | "eventToFunction":{}, 52 | "length":1.0, 53 | "lockOrigin":false, 54 | "moments":{ 55 | "$KeyframeStore":"", 56 | "Keyframes":[], 57 | "resourceType":"KeyframeStore", 58 | "resourceVersion":"2.0", 59 | }, 60 | "name":"yan_static1", 61 | "playback":1, 62 | "playbackSpeed":30.0, 63 | "playbackSpeedType":0, 64 | "resourceType":"GMSequence", 65 | "resourceVersion":"2.0", 66 | "showBackdrop":true, 67 | "showBackdropImage":false, 68 | "timeUnits":1, 69 | "tracks":[ 70 | {"$GMSpriteFramesTrack":"","builtinName":0,"events":[],"inheritsTrackColour":true,"interpolation":1,"isCreationTrack":false,"keyframes":{"$KeyframeStore":"","Keyframes":[ 71 | {"$Keyframe":"","Channels":{ 72 | "0":{"$SpriteFrameKeyframe":"","Id":{"name":"d169c9b8-0896-4f36-a985-4cf3d26f7b31","path":"sprites/yan_static1/yan_static1.yy",},"resourceType":"SpriteFrameKeyframe","resourceVersion":"2.0",}, 73 | },"Disabled":false,"id":"cc7a6944-49cc-4ce8-adfe-1dda4e94b17b","IsCreationKey":false,"Key":0.0,"Length":1.0,"resourceType":"Keyframe","resourceVersion":"2.0","Stretch":false,}, 74 | ],"resourceType":"KeyframeStore","resourceVersion":"2.0",},"modifiers":[],"name":"frames","resourceType":"GMSpriteFramesTrack","resourceVersion":"2.0","spriteId":null,"trackColour":0,"tracks":[],"traits":0,}, 75 | ], 76 | "visibleRange":null, 77 | "volume":1.0, 78 | "xorigin":0, 79 | "yorigin":0, 80 | }, 81 | "swatchColours":null, 82 | "swfPrecision":2.525, 83 | "textureGroupId":{ 84 | "name":"Default", 85 | "path":"texturegroups/Default", 86 | }, 87 | "type":0, 88 | "VTile":false, 89 | "width":65, 90 | } -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/yan_static2/16865e6e-e9d8-478e-8171-b488a4ebc677.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/yan_static2/16865e6e-e9d8-478e-8171-b488a4ebc677.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/yan_static2/layers/16865e6e-e9d8-478e-8171-b488a4ebc677/e74f5adb-95f7-44b3-b344-3fafd2d280ef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/yan_static2/layers/16865e6e-e9d8-478e-8171-b488a4ebc677/e74f5adb-95f7-44b3-b344-3fafd2d280ef.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/yan_static2/yan_static2.yy: -------------------------------------------------------------------------------- 1 | { 2 | "$GMSprite":"", 3 | "%Name":"yan_static2", 4 | "bboxMode":0, 5 | "bbox_bottom":83, 6 | "bbox_left":5, 7 | "bbox_right":62, 8 | "bbox_top":7, 9 | "collisionKind":1, 10 | "collisionTolerance":0, 11 | "DynamicTexturePage":false, 12 | "edgeFiltering":false, 13 | "For3D":false, 14 | "frames":[ 15 | {"$GMSpriteFrame":"","%Name":"16865e6e-e9d8-478e-8171-b488a4ebc677","name":"16865e6e-e9d8-478e-8171-b488a4ebc677","resourceType":"GMSpriteFrame","resourceVersion":"2.0",}, 16 | ], 17 | "gridX":0, 18 | "gridY":0, 19 | "height":85, 20 | "HTile":false, 21 | "layers":[ 22 | {"$GMImageLayer":"","%Name":"e74f5adb-95f7-44b3-b344-3fafd2d280ef","blendMode":0,"displayName":"default","isLocked":false,"name":"e74f5adb-95f7-44b3-b344-3fafd2d280ef","opacity":100.0,"resourceType":"GMImageLayer","resourceVersion":"2.0","visible":true,}, 23 | ], 24 | "name":"yan_static2", 25 | "nineSlice":null, 26 | "origin":0, 27 | "parent":{ 28 | "name":"YanKandy", 29 | "path":"folders/Sprites/YanKandy.yy", 30 | }, 31 | "preMultiplyAlpha":false, 32 | "resourceType":"GMSprite", 33 | "resourceVersion":"2.0", 34 | "sequence":{ 35 | "$GMSequence":"", 36 | "%Name":"yan_static2", 37 | "autoRecord":true, 38 | "backdropHeight":768, 39 | "backdropImageOpacity":0.5, 40 | "backdropImagePath":"", 41 | "backdropWidth":1366, 42 | "backdropXOffset":0.0, 43 | "backdropYOffset":0.0, 44 | "events":{ 45 | "$KeyframeStore":"", 46 | "Keyframes":[], 47 | "resourceType":"KeyframeStore", 48 | "resourceVersion":"2.0", 49 | }, 50 | "eventStubScript":null, 51 | "eventToFunction":{}, 52 | "length":1.0, 53 | "lockOrigin":false, 54 | "moments":{ 55 | "$KeyframeStore":"", 56 | "Keyframes":[], 57 | "resourceType":"KeyframeStore", 58 | "resourceVersion":"2.0", 59 | }, 60 | "name":"yan_static2", 61 | "playback":1, 62 | "playbackSpeed":30.0, 63 | "playbackSpeedType":0, 64 | "resourceType":"GMSequence", 65 | "resourceVersion":"2.0", 66 | "showBackdrop":true, 67 | "showBackdropImage":false, 68 | "timeUnits":1, 69 | "tracks":[ 70 | {"$GMSpriteFramesTrack":"","builtinName":0,"events":[],"inheritsTrackColour":true,"interpolation":1,"isCreationTrack":false,"keyframes":{"$KeyframeStore":"","Keyframes":[ 71 | {"$Keyframe":"","Channels":{ 72 | "0":{"$SpriteFrameKeyframe":"","Id":{"name":"16865e6e-e9d8-478e-8171-b488a4ebc677","path":"sprites/yan_static2/yan_static2.yy",},"resourceType":"SpriteFrameKeyframe","resourceVersion":"2.0",}, 73 | },"Disabled":false,"id":"351fabed-47ae-4746-a52d-d224edd112cc","IsCreationKey":false,"Key":0.0,"Length":1.0,"resourceType":"Keyframe","resourceVersion":"2.0","Stretch":false,}, 74 | ],"resourceType":"KeyframeStore","resourceVersion":"2.0",},"modifiers":[],"name":"frames","resourceType":"GMSpriteFramesTrack","resourceVersion":"2.0","spriteId":null,"trackColour":0,"tracks":[],"traits":0,}, 75 | ], 76 | "visibleRange":null, 77 | "volume":1.0, 78 | "xorigin":0, 79 | "yorigin":0, 80 | }, 81 | "swatchColours":null, 82 | "swfPrecision":2.525, 83 | "textureGroupId":{ 84 | "name":"Default", 85 | "path":"texturegroups/Default", 86 | }, 87 | "type":0, 88 | "VTile":false, 89 | "width":65, 90 | } -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/yankandy/e30f1f68-4e4b-4ba3-8ba6-a0ca7a1cbf2f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/yankandy/e30f1f68-4e4b-4ba3-8ba6-a0ca7a1cbf2f.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/yankandy/layers/e30f1f68-4e4b-4ba3-8ba6-a0ca7a1cbf2f/ad90dd2b-a72b-4051-8ec3-063423d9b19e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/yankandy/layers/e30f1f68-4e4b-4ba3-8ba6-a0ca7a1cbf2f/ad90dd2b-a72b-4051-8ec3-063423d9b19e.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/sprites/yankandy/yankandy.yy: -------------------------------------------------------------------------------- 1 | { 2 | "$GMSprite":"", 3 | "%Name":"yankandy", 4 | "bboxMode":0, 5 | "bbox_bottom":1023, 6 | "bbox_left":0, 7 | "bbox_right":511, 8 | "bbox_top":0, 9 | "collisionKind":1, 10 | "collisionTolerance":0, 11 | "DynamicTexturePage":false, 12 | "edgeFiltering":false, 13 | "For3D":false, 14 | "frames":[ 15 | {"$GMSpriteFrame":"","%Name":"e30f1f68-4e4b-4ba3-8ba6-a0ca7a1cbf2f","name":"e30f1f68-4e4b-4ba3-8ba6-a0ca7a1cbf2f","resourceType":"GMSpriteFrame","resourceVersion":"2.0",}, 16 | ], 17 | "gridX":0, 18 | "gridY":0, 19 | "height":1024, 20 | "HTile":false, 21 | "layers":[ 22 | {"$GMImageLayer":"","%Name":"ad90dd2b-a72b-4051-8ec3-063423d9b19e","blendMode":0,"displayName":"default","isLocked":false,"name":"ad90dd2b-a72b-4051-8ec3-063423d9b19e","opacity":100.0,"resourceType":"GMImageLayer","resourceVersion":"2.0","visible":true,}, 23 | ], 24 | "name":"yankandy", 25 | "nineSlice":null, 26 | "origin":0, 27 | "parent":{ 28 | "name":"YanKandy", 29 | "path":"folders/Sprites/YanKandy.yy", 30 | }, 31 | "preMultiplyAlpha":false, 32 | "resourceType":"GMSprite", 33 | "resourceVersion":"2.0", 34 | "sequence":{ 35 | "$GMSequence":"", 36 | "%Name":"yankandy", 37 | "autoRecord":true, 38 | "backdropHeight":768, 39 | "backdropImageOpacity":0.5, 40 | "backdropImagePath":"", 41 | "backdropWidth":1366, 42 | "backdropXOffset":0.0, 43 | "backdropYOffset":0.0, 44 | "events":{ 45 | "$KeyframeStore":"", 46 | "Keyframes":[], 47 | "resourceType":"KeyframeStore", 48 | "resourceVersion":"2.0", 49 | }, 50 | "eventStubScript":null, 51 | "eventToFunction":{}, 52 | "length":1.0, 53 | "lockOrigin":false, 54 | "moments":{ 55 | "$KeyframeStore":"", 56 | "Keyframes":[], 57 | "resourceType":"KeyframeStore", 58 | "resourceVersion":"2.0", 59 | }, 60 | "name":"yankandy", 61 | "playback":1, 62 | "playbackSpeed":30.0, 63 | "playbackSpeedType":0, 64 | "resourceType":"GMSequence", 65 | "resourceVersion":"2.0", 66 | "showBackdrop":true, 67 | "showBackdropImage":false, 68 | "timeUnits":1, 69 | "tracks":[ 70 | {"$GMSpriteFramesTrack":"","builtinName":0,"events":[],"inheritsTrackColour":true,"interpolation":1,"isCreationTrack":false,"keyframes":{"$KeyframeStore":"","Keyframes":[ 71 | {"$Keyframe":"","Channels":{ 72 | "0":{"$SpriteFrameKeyframe":"","Id":{"name":"e30f1f68-4e4b-4ba3-8ba6-a0ca7a1cbf2f","path":"sprites/yankandy/yankandy.yy",},"resourceType":"SpriteFrameKeyframe","resourceVersion":"2.0",}, 73 | },"Disabled":false,"id":"be4aeec3-0c12-4532-bd2a-cd7d276bc1b0","IsCreationKey":false,"Key":0.0,"Length":1.0,"resourceType":"Keyframe","resourceVersion":"2.0","Stretch":false,}, 74 | ],"resourceType":"KeyframeStore","resourceVersion":"2.0",},"modifiers":[],"name":"frames","resourceType":"GMSpriteFramesTrack","resourceVersion":"2.0","spriteId":null,"trackColour":0,"tracks":[],"traits":0,}, 75 | ], 76 | "visibleRange":null, 77 | "volume":1.0, 78 | "xorigin":0, 79 | "yorigin":0, 80 | }, 81 | "swatchColours":null, 82 | "swfPrecision":2.525, 83 | "textureGroupId":{ 84 | "name":"Default", 85 | "path":"texturegroups/Default", 86 | }, 87 | "type":0, 88 | "VTile":false, 89 | "width":512, 90 | } -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/tilesets/TileSetCastleInside/TileSetCastleInside.yy: -------------------------------------------------------------------------------- 1 | { 2 | "$GMTileSet":"v1", 3 | "%Name":"TileSetCastleInside", 4 | "autoTileSets":[], 5 | "macroPageTiles":{ 6 | "SerialiseHeight":0, 7 | "SerialiseWidth":0, 8 | "TileSerialiseData":[], 9 | }, 10 | "name":"TileSetCastleInside", 11 | "out_columns":23, 12 | "out_tilehborder":2, 13 | "out_tilevborder":2, 14 | "parent":{ 15 | "name":"Tilesets", 16 | "path":"folders/Tilesets.yy", 17 | }, 18 | "resourceType":"GMTileSet", 19 | "resourceVersion":"2.0", 20 | "spriteId":{ 21 | "name":"TilSetCastleInside", 22 | "path":"sprites/TilSetCastleInside/TilSetCastleInside.yy", 23 | }, 24 | "spriteNoExport":true, 25 | "textureGroupId":{ 26 | "name":"Default", 27 | "path":"texturegroups/Default", 28 | }, 29 | "tileAnimationFrames":[], 30 | "tileAnimationSpeed":15.0, 31 | "tileHeight":16, 32 | "tilehsep":0, 33 | "tilevsep":0, 34 | "tileWidth":16, 35 | "tilexoff":0, 36 | "tileyoff":0, 37 | "tile_count":512, 38 | } -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/tilesets/TileSetCastleInside/output_tileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/tilesets/TileSetCastleInside/output_tileset.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/tilesets/TileSetCastleOutside/TileSetCastleOutside.yy: -------------------------------------------------------------------------------- 1 | { 2 | "$GMTileSet":"v1", 3 | "%Name":"TileSetCastleOutside", 4 | "autoTileSets":[], 5 | "macroPageTiles":{ 6 | "SerialiseHeight":0, 7 | "SerialiseWidth":0, 8 | "TileSerialiseData":[], 9 | }, 10 | "name":"TileSetCastleOutside", 11 | "out_columns":23, 12 | "out_tilehborder":2, 13 | "out_tilevborder":2, 14 | "parent":{ 15 | "name":"Tilesets", 16 | "path":"folders/Tilesets.yy", 17 | }, 18 | "resourceType":"GMTileSet", 19 | "resourceVersion":"2.0", 20 | "spriteId":{ 21 | "name":"TilSetCastleOutside", 22 | "path":"sprites/TilSetCastleOutside/TilSetCastleOutside.yy", 23 | }, 24 | "spriteNoExport":true, 25 | "textureGroupId":{ 26 | "name":"Default", 27 | "path":"texturegroups/Default", 28 | }, 29 | "tileAnimationFrames":[], 30 | "tileAnimationSpeed":15.0, 31 | "tileHeight":16, 32 | "tilehsep":0, 33 | "tilevsep":0, 34 | "tileWidth":16, 35 | "tilexoff":0, 36 | "tileyoff":0, 37 | "tile_count":512, 38 | } -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/tilesets/TileSetCastleOutside/output_tileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/tilesets/TileSetCastleOutside/output_tileset.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/tilesets/TileSetForest/TileSetForest.yy: -------------------------------------------------------------------------------- 1 | { 2 | "$GMTileSet":"v1", 3 | "%Name":"TileSetForest", 4 | "autoTileSets":[], 5 | "macroPageTiles":{ 6 | "SerialiseHeight":0, 7 | "SerialiseWidth":0, 8 | "TileSerialiseData":[], 9 | }, 10 | "name":"TileSetForest", 11 | "out_columns":23, 12 | "out_tilehborder":2, 13 | "out_tilevborder":2, 14 | "parent":{ 15 | "name":"Tilesets", 16 | "path":"folders/Tilesets.yy", 17 | }, 18 | "resourceType":"GMTileSet", 19 | "resourceVersion":"2.0", 20 | "spriteId":{ 21 | "name":"tiles_forest", 22 | "path":"sprites/tiles_forest/tiles_forest.yy", 23 | }, 24 | "spriteNoExport":true, 25 | "textureGroupId":{ 26 | "name":"Default", 27 | "path":"texturegroups/Default", 28 | }, 29 | "tileAnimationFrames":[], 30 | "tileAnimationSpeed":15.0, 31 | "tileHeight":16, 32 | "tilehsep":0, 33 | "tilevsep":0, 34 | "tileWidth":16, 35 | "tilexoff":0, 36 | "tileyoff":0, 37 | "tile_count":512, 38 | } -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/tilesets/TileSetForest/output_tileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/tilesets/TileSetForest/output_tileset.png -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/tilesets/TileSetMountain/TileSetMountain.yy: -------------------------------------------------------------------------------- 1 | { 2 | "$GMTileSet":"v1", 3 | "%Name":"TileSetMountain", 4 | "autoTileSets":[], 5 | "macroPageTiles":{ 6 | "SerialiseHeight":0, 7 | "SerialiseWidth":0, 8 | "TileSerialiseData":[], 9 | }, 10 | "name":"TileSetMountain", 11 | "out_columns":23, 12 | "out_tilehborder":2, 13 | "out_tilevborder":2, 14 | "parent":{ 15 | "name":"Tilesets", 16 | "path":"folders/Tilesets.yy", 17 | }, 18 | "resourceType":"GMTileSet", 19 | "resourceVersion":"2.0", 20 | "spriteId":{ 21 | "name":"tiles_mountain", 22 | "path":"sprites/tiles_mountain/tiles_mountain.yy", 23 | }, 24 | "spriteNoExport":true, 25 | "textureGroupId":{ 26 | "name":"Default", 27 | "path":"texturegroups/Default", 28 | }, 29 | "tileAnimationFrames":[], 30 | "tileAnimationSpeed":15.0, 31 | "tileHeight":16, 32 | "tilehsep":0, 33 | "tilevsep":0, 34 | "tileWidth":16, 35 | "tilexoff":0, 36 | "tileyoff":0, 37 | "tile_count":512, 38 | } -------------------------------------------------------------------------------- /captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/tilesets/TileSetMountain/output_tileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirnbix/captain-holetooth/a0267735e42f40ef5d56c9cb63d5687446b9f86c/captain-holetooth-gamemaker/Captain Holetooth.yyp/Captain Holetooth.yyp/tilesets/TileSetMountain/output_tileset.png --------------------------------------------------------------------------------