A dungeon delver roguelike using Pathfinder 2nd edition rules

Adding blank GB Studio project

+1078 -60
+6 -60
gb/.gitignore
··· 1 - # Created by https://www.toptal.com/developers/gitignore/api/c 2 - # Edit at https://www.toptal.com/developers/gitignore?templates=c 3 - 4 - ### C ### 5 - # Prerequisites 6 - *.d 7 - 8 - # Object files 9 - *.o 10 - *.ko 11 - *.obj 12 - *.elf 13 - *.asm 14 - *.lst 15 - *.sym 16 - *.ihx 17 - 18 - # Linker output 19 - *.ilk 20 - *.map 21 - *.exp 22 - 23 - # Precompiled Headers 24 - *.gch 25 - *.pch 26 - 27 - # Libraries 28 - *.lib 29 - *.a 30 - *.la 31 - *.lo 32 - 33 - # Shared objects (inc. Windows DLLs) 34 - *.dll 35 - *.so 36 - *.so.* 37 - *.dylib 1 + build/ 2 + cache/ 38 3 39 - # Executables 40 - *.exe 41 - *.out 42 - *.app 43 - *.i*86 44 - *.x86_64 45 - *.hex 4 + *.bak 5 + *.sav 6 + *.icloud 46 7 47 - # Debug files 48 - *.dSYM/ 49 - *.su 50 - *.idb 51 - *.pdb 52 - 53 - # Kernel Module Compile Results 54 - *.mod* 55 - *.cmd 56 - .tmp_versions/ 57 - modules.order 58 - Module.symvers 59 - Mkfile.old 60 - dkms.conf 61 - 62 - # End of https://www.toptal.com/developers/gitignore/api/c 8 + user_settings.gbsres
+8
gb/Untitled.gbsproj
··· 1 + { 2 + "_resourceType": "project", 3 + "name": "Untitled", 4 + "author": "cass-forest", 5 + "notes": "", 6 + "_version": "4.1.0", 7 + "_release": "1" 8 + }
+3
gb/assets/avatars/README.md
··· 1 + Place 16x16 .png files in this folder to use them as avatars in your dialogues 2 + 3 + Docs: https://www.gbstudio.dev/docs/assets/ui-elements#avatars
+3
gb/assets/backgrounds/README.md
··· 1 + Place .png files in this folder to use them as backgrounds for your scenes 2 + 3 + Docs: https://www.gbstudio.dev/docs/assets/backgrounds
gb/assets/backgrounds/placeholder.png

This is a binary file and will not be displayed.

+3
gb/assets/emotes/README.md
··· 1 + Place 16x16 .png files in this folder to use them as emotes in your game 2 + 3 + Docs: https://www.gbstudio.dev/docs/assets/ui-elements#emotes
gb/assets/emotes/anger.png

This is a binary file and will not be displayed.

gb/assets/emotes/love.png

This is a binary file and will not be displayed.

gb/assets/emotes/music.png

This is a binary file and will not be displayed.

gb/assets/emotes/pause.png

This is a binary file and will not be displayed.

gb/assets/emotes/question.png

This is a binary file and will not be displayed.

gb/assets/emotes/shock.png

This is a binary file and will not be displayed.

gb/assets/emotes/sleep.png

This is a binary file and will not be displayed.

gb/assets/emotes/sweat.png

This is a binary file and will not be displayed.

+3
gb/assets/fonts/README.md
··· 1 + Place .png and .json mapping files in this folder to use them as fonts in your dialogues 2 + 3 + Docs: https://www.gbstudio.dev/docs/settings/#ui-elements--fonts
+4
gb/assets/fonts/gbs-mono.json
··· 1 + { 2 + "name": "GBS Mono", 3 + "mapping": {} 4 + }
gb/assets/fonts/gbs-mono.png

This is a binary file and will not be displayed.

+4
gb/assets/fonts/gbs-var.json
··· 1 + { 2 + "name": "GBS Variable Width", 3 + "mapping": {} 4 + }
gb/assets/fonts/gbs-var.png

This is a binary file and will not be displayed.

+3
gb/assets/music/README.md
··· 1 + Place .uge and .mod files in this folder to use them as music in your game 2 + 3 + Docs: https://www.gbstudio.dev/docs/assets/music/
gb/assets/music/template.mod

This is a binary file and will not be displayed.

+3
gb/assets/sounds/README.md
··· 1 + Place .wav, .sav or .vgm files in this folder to use them as sound effects in your game 2 + 3 + Docs: https://www.gbstudio.dev/docs/assets/sound-effects
+3
gb/assets/sprites/README.md
··· 1 + Place .png files in this folder to use them as sprites for your game's actors 2 + 3 + Docs: https://www.gbstudio.dev/docs/assets/sprites
gb/assets/sprites/actor.png

This is a binary file and will not be displayed.

gb/assets/sprites/actor_animated.png

This is a binary file and will not be displayed.

gb/assets/sprites/static.png

This is a binary file and will not be displayed.

+3
gb/assets/tilesets/README.md
··· 1 + Place .png files in this folder to use them as tilesets for your game 2 + 3 + Docs: https://www.gbstudio.dev/docs/assets/tilesets
+3
gb/assets/ui/README.md
··· 1 + Place .png files in this folder to use them as UI elements of your game 2 + 3 + Docs: https://www.gbstudio.dev/docs/assets/ui-elements
gb/assets/ui/cursor.png

This is a binary file and will not be displayed.

gb/assets/ui/frame.png

This is a binary file and will not be displayed.

+3
gb/plugins/README.md
··· 1 + Place plugin folders in this folder to extend the capabilities of your game 2 + 3 + Docs: https://www.gbstudio.dev/docs/extending-gbstudio/plugins
+13
gb/project/backgrounds/placeholder.gbsres
··· 1 + { 2 + "_resourceType": "background", 3 + "id": "1e5f9d6a-bdbc-43e6-8c34-22f5bb5dea05", 4 + "name": "placeholder", 5 + "symbol": "bg_placeholder", 6 + "width": 20, 7 + "height": 18, 8 + "imageWidth": 160, 9 + "imageHeight": 144, 10 + "filename": "placeholder.png", 11 + "tileColors": "", 12 + "autoColor": false 13 + }
+9
gb/project/emotes/anger.gbsres
··· 1 + { 2 + "_resourceType": "emote", 3 + "id": "9df5f63f-ea47-447e-9b14-cb2dbafb697d", 4 + "name": "anger", 5 + "symbol": "emote_anger", 6 + "width": 16, 7 + "height": 16, 8 + "filename": "anger.png" 9 + }
+9
gb/project/emotes/love.gbsres
··· 1 + { 2 + "_resourceType": "emote", 3 + "id": "edf96d29-9a08-4813-b2d3-46e0996f89f2", 4 + "name": "love", 5 + "symbol": "emote_love", 6 + "width": 16, 7 + "height": 16, 8 + "filename": "love.png" 9 + }
+9
gb/project/emotes/music.gbsres
··· 1 + { 2 + "_resourceType": "emote", 3 + "id": "f1be2ac3-04ab-482a-8b83-99ffba1a89cd", 4 + "name": "music", 5 + "symbol": "emote_music", 6 + "width": 16, 7 + "height": 16, 8 + "filename": "music.png" 9 + }
+9
gb/project/emotes/pause.gbsres
··· 1 + { 2 + "_resourceType": "emote", 3 + "id": "d508e529-57eb-458b-9782-66f318243c32", 4 + "name": "pause", 5 + "symbol": "emote_pause", 6 + "width": 16, 7 + "height": 16, 8 + "filename": "pause.png" 9 + }
+9
gb/project/emotes/question.gbsres
··· 1 + { 2 + "_resourceType": "emote", 3 + "id": "70a4ce25-1fe4-4ab1-aee9-21255e70fb76", 4 + "name": "question", 5 + "symbol": "emote_question", 6 + "width": 16, 7 + "height": 16, 8 + "filename": "question.png" 9 + }
+9
gb/project/emotes/shock.gbsres
··· 1 + { 2 + "_resourceType": "emote", 3 + "id": "56423c9c-dca0-4f5b-ad92-28e9660d50f1", 4 + "name": "shock", 5 + "symbol": "emote_shock", 6 + "width": 16, 7 + "height": 16, 8 + "filename": "shock.png" 9 + }
+9
gb/project/emotes/sleep.gbsres
··· 1 + { 2 + "_resourceType": "emote", 3 + "id": "2d4b251d-0241-40eb-98e1-e396b236772c", 4 + "name": "sleep", 5 + "symbol": "emote_sleep", 6 + "width": 16, 7 + "height": 16, 8 + "filename": "sleep.png" 9 + }
+9
gb/project/emotes/sweat.gbsres
··· 1 + { 2 + "_resourceType": "emote", 3 + "id": "3c769dca-51f3-426c-942f-71c4d3af6202", 4 + "name": "sweat", 5 + "symbol": "emote_sweat", 6 + "width": 16, 7 + "height": 16, 8 + "filename": "sweat.png" 9 + }
+9
gb/project/engine_field_values.gbsres
··· 1 + { 2 + "_resourceType": "engineFieldValues", 3 + "engineFieldValues": [ 4 + { 5 + "id": "fade_style", 6 + "value": 0 7 + } 8 + ] 9 + }
+10
gb/project/fonts/gbs_mono.gbsres
··· 1 + { 2 + "_resourceType": "font", 3 + "id": "4bd653f0-e08d-424e-9e5b-c1f3aaa21e47", 4 + "name": "GBS Mono", 5 + "symbol": "font_gbs_mono", 6 + "width": 128, 7 + "height": 112, 8 + "filename": "gbs-mono.png", 9 + "mapping": {} 10 + }
+10
gb/project/fonts/gbs_variable_width.gbsres
··· 1 + { 2 + "_resourceType": "font", 3 + "id": "8ed435d9-51cb-44e7-8b0d-ca85e63ca427", 4 + "name": "GBS Variable Width", 5 + "symbol": "font_gbs_variable_width", 6 + "width": 128, 7 + "height": 112, 8 + "filename": "gbs-var.png", 9 + "mapping": {} 10 + }
+9
gb/project/music/template.gbsres
··· 1 + { 2 + "_resourceType": "music", 3 + "id": "f50428ab-a084-4591-9bba-2ba10fe7b1c6", 4 + "name": "template", 5 + "symbol": "song_template", 6 + "filename": "template.mod", 7 + "settings": {}, 8 + "type": "mod" 9 + }
+18
gb/project/palettes/default_bg_1.gbsres
··· 1 + { 2 + "_resourceType": "palette", 3 + "id": "default-bg-1", 4 + "name": "Default BG 1", 5 + "colors": [ 6 + "F8E8C8", 7 + "D89048", 8 + "A82820", 9 + "301850" 10 + ], 11 + "defaultName": "Default BG 1", 12 + "defaultColors": [ 13 + "F8E8C8", 14 + "D89048", 15 + "A82820", 16 + "301850" 17 + ] 18 + }
+18
gb/project/palettes/default_bg_2.gbsres
··· 1 + { 2 + "_resourceType": "palette", 3 + "id": "default-bg-2", 4 + "name": "Default BG 2", 5 + "colors": [ 6 + "E0F8A0", 7 + "78C838", 8 + "488818", 9 + "081800" 10 + ], 11 + "defaultName": "Default BG 2", 12 + "defaultColors": [ 13 + "E0F8A0", 14 + "78C838", 15 + "488818", 16 + "081800" 17 + ] 18 + }
+18
gb/project/palettes/default_bg_3.gbsres
··· 1 + { 2 + "_resourceType": "palette", 3 + "id": "default-bg-3", 4 + "name": "Default BG 3", 5 + "colors": [ 6 + "F8D8A8", 7 + "E0A878", 8 + "785888", 9 + "002030" 10 + ], 11 + "defaultName": "Default BG 3", 12 + "defaultColors": [ 13 + "F8D8A8", 14 + "E0A878", 15 + "785888", 16 + "002030" 17 + ] 18 + }
+18
gb/project/palettes/default_bg_4.gbsres
··· 1 + { 2 + "_resourceType": "palette", 3 + "id": "default-bg-4", 4 + "name": "Default BG 4", 5 + "colors": [ 6 + "B8D0D0", 7 + "D880D8", 8 + "8000A0", 9 + "380000" 10 + ], 11 + "defaultName": "Default BG 4", 12 + "defaultColors": [ 13 + "B8D0D0", 14 + "D880D8", 15 + "8000A0", 16 + "380000" 17 + ] 18 + }
+18
gb/project/palettes/default_bg_5.gbsres
··· 1 + { 2 + "_resourceType": "palette", 3 + "id": "default-bg-5", 4 + "name": "Default BG 5", 5 + "colors": [ 6 + "F8F8B8", 7 + "90C8C8", 8 + "486878", 9 + "082048" 10 + ], 11 + "defaultName": "Default BG 5", 12 + "defaultColors": [ 13 + "F8F8B8", 14 + "90C8C8", 15 + "486878", 16 + "082048" 17 + ] 18 + }
+18
gb/project/palettes/default_bg_6.gbsres
··· 1 + { 2 + "_resourceType": "palette", 3 + "id": "default-bg-6", 4 + "name": "Default BG 6", 5 + "colors": [ 6 + "F8D8B0", 7 + "78C078", 8 + "688840", 9 + "583820" 10 + ], 11 + "defaultName": "Default BG 6", 12 + "defaultColors": [ 13 + "F8D8B0", 14 + "78C078", 15 + "688840", 16 + "583820" 17 + ] 18 + }
+18
gb/project/palettes/default_sprites.gbsres
··· 1 + { 2 + "_resourceType": "palette", 3 + "id": "default-sprite", 4 + "name": "Default Sprites", 5 + "colors": [ 6 + "F8F0E0", 7 + "D88078", 8 + "B05010", 9 + "000000" 10 + ], 11 + "defaultName": "Default Sprites", 12 + "defaultColors": [ 13 + "F8F0E0", 14 + "D88078", 15 + "B05010", 16 + "000000" 17 + ] 18 + }
+18
gb/project/palettes/default_ui.gbsres
··· 1 + { 2 + "_resourceType": "palette", 3 + "id": "default-ui", 4 + "name": "Default UI", 5 + "colors": [ 6 + "F8F8B8", 7 + "90C8C8", 8 + "486878", 9 + "082048" 10 + ], 11 + "defaultName": "Default UI", 12 + "defaultColors": [ 13 + "F8F8B8", 14 + "90C8C8", 15 + "486878", 16 + "082048" 17 + ] 18 + }
+89
gb/project/settings.gbsres
··· 1 + { 2 + "_resourceType": "settings", 3 + "startSceneId": "", 4 + "startX": 9, 5 + "startY": 9, 6 + "startMoveSpeed": 1, 7 + "startAnimSpeed": 15, 8 + "startDirection": "down", 9 + "showCollisionExtraTiles": false, 10 + "sgbEnabled": false, 11 + "customHead": "", 12 + "defaultBackgroundPaletteIds": [ 13 + "default-bg-1", 14 + "default-bg-2", 15 + "default-bg-3", 16 + "default-bg-4", 17 + "default-bg-5", 18 + "default-bg-6", 19 + "dmg", 20 + "default-ui" 21 + ], 22 + "defaultSpritePaletteIds": [ 23 + "default-sprite", 24 + "default-sprite", 25 + "default-sprite", 26 + "default-sprite", 27 + "default-sprite", 28 + "default-sprite", 29 + "default-sprite", 30 + "default-sprite" 31 + ], 32 + "defaultSpritePaletteId": "default-sprite", 33 + "defaultUIPaletteId": "default-ui", 34 + "playerPaletteId": "", 35 + "defaultFontId": "4bd653f0-e08d-424e-9e5b-c1f3aaa21e47", 36 + "defaultCharacterEncoding": "", 37 + "defaultPlayerSprites": { 38 + "TOPDOWN": "581d34d0-9591-4e6e-a609-1d94f203b0cd", 39 + "PLATFORM": "581d34d0-9591-4e6e-a609-1d94f203b0cd", 40 + "ADVENTURE": "581d34d0-9591-4e6e-a609-1d94f203b0cd", 41 + "SHMUP": "581d34d0-9591-4e6e-a609-1d94f203b0cd", 42 + "POINTNCLICK": "581d34d0-9591-4e6e-a609-1d94f203b0cd", 43 + "LOGO": "581d34d0-9591-4e6e-a609-1d94f203b0cd" 44 + }, 45 + "musicDriver": "huge", 46 + "cartType": "mbc5", 47 + "batterylessEnabled": false, 48 + "customColorsWhite": "E8F8E0", 49 + "customColorsLight": "B0F088", 50 + "customColorsDark": "509878", 51 + "customColorsBlack": "202850", 52 + "customControlsUp": [ 53 + "ArrowUp", 54 + "w" 55 + ], 56 + "customControlsDown": [ 57 + "ArrowDown", 58 + "s" 59 + ], 60 + "customControlsLeft": [ 61 + "ArrowLeft", 62 + "a" 63 + ], 64 + "customControlsRight": [ 65 + "ArrowRight", 66 + "d" 67 + ], 68 + "customControlsA": [ 69 + "Alt", 70 + "z", 71 + "j" 72 + ], 73 + "customControlsB": [ 74 + "Control", 75 + "k", 76 + "x" 77 + ], 78 + "customControlsStart": [ 79 + "Enter" 80 + ], 81 + "customControlsSelect": [ 82 + "Shift" 83 + ], 84 + "colorMode": "mono", 85 + "generateDebugFilesEnabled": false, 86 + "compilerPreset": 3000, 87 + "scriptEventPresets": {}, 88 + "scriptEventDefaultPresets": {} 89 + }
+182
gb/project/sprites/actor.gbsres
··· 1 + { 2 + "_resourceType": "sprite", 3 + "id": "11b5452b-187c-43a3-afb1-a1f4f74ffda2", 4 + "name": "actor", 5 + "symbol": "sprite_actor", 6 + "numFrames": 3, 7 + "filename": "actor.png", 8 + "checksum": "8646d62a30fe76f9e39e3dbdb23aab0182a33146", 9 + "width": 48, 10 + "height": 16, 11 + "states": [ 12 + { 13 + "id": "4d1efdcf-c6d6-4b25-ab89-008b990697ac", 14 + "name": "", 15 + "animationType": "multi", 16 + "flipLeft": true, 17 + "animations": [ 18 + { 19 + "id": "f0e27b77-101b-4c2f-bf52-fda0ae13dae4", 20 + "frames": [ 21 + { 22 + "id": "c905496b-7d90-4107-9728-767b51d9b563", 23 + "tiles": [ 24 + { 25 + "id": "d51763df-1353-4da7-9cf7-03fbada9edd2", 26 + "x": 0, 27 + "y": 0, 28 + "sliceX": 32, 29 + "sliceY": 0, 30 + "flipX": false, 31 + "flipY": false, 32 + "palette": 0, 33 + "paletteIndex": 0, 34 + "objPalette": "OBP0", 35 + "priority": false 36 + }, 37 + { 38 + "id": "c7f96290-0943-4855-a706-f198accdca3f", 39 + "x": 8, 40 + "y": 0, 41 + "sliceX": 40, 42 + "sliceY": 0, 43 + "flipX": false, 44 + "flipY": false, 45 + "palette": 0, 46 + "paletteIndex": 0, 47 + "objPalette": "OBP0", 48 + "priority": false 49 + } 50 + ] 51 + } 52 + ] 53 + }, 54 + { 55 + "id": "1b2a6e13-d68d-4e1e-bbdf-8d6373c32aeb", 56 + "frames": [ 57 + { 58 + "id": "c8475e7f-f140-45a2-9e17-5f03dfc0b08a", 59 + "tiles": [] 60 + } 61 + ] 62 + }, 63 + { 64 + "id": "81693f16-7557-4275-8c3a-5e0870b4fb44", 65 + "frames": [ 66 + { 67 + "id": "1eca9394-f2ce-4e64-ae8c-3c0391c82a5f", 68 + "tiles": [ 69 + { 70 + "id": "ae5c1dc0-bc0d-473e-a60f-01681ee3fd93", 71 + "x": 0, 72 + "y": 0, 73 + "sliceX": 16, 74 + "sliceY": 0, 75 + "flipX": false, 76 + "flipY": false, 77 + "palette": 0, 78 + "paletteIndex": 0, 79 + "objPalette": "OBP0", 80 + "priority": false 81 + }, 82 + { 83 + "id": "3146fbf9-70c1-4f2a-ad22-24ca660214d3", 84 + "x": 8, 85 + "y": 0, 86 + "sliceX": 24, 87 + "sliceY": 0, 88 + "flipX": false, 89 + "flipY": false, 90 + "palette": 0, 91 + "paletteIndex": 0, 92 + "objPalette": "OBP0", 93 + "priority": false 94 + } 95 + ] 96 + } 97 + ] 98 + }, 99 + { 100 + "id": "3a6307b3-dc1b-4a21-ab60-0dfddc5778f9", 101 + "frames": [ 102 + { 103 + "id": "5937f120-b849-468b-956a-4c9cb8c3c86d", 104 + "tiles": [ 105 + { 106 + "id": "d713bb5d-ce8c-44c8-8644-164bdb67f43c", 107 + "x": 0, 108 + "y": 0, 109 + "sliceX": 0, 110 + "sliceY": 0, 111 + "flipX": false, 112 + "flipY": false, 113 + "palette": 0, 114 + "paletteIndex": 0, 115 + "objPalette": "OBP0", 116 + "priority": false 117 + }, 118 + { 119 + "id": "ce71fffe-8c06-452e-ae41-58fb3c6d5ff4", 120 + "x": 8, 121 + "y": 0, 122 + "sliceX": 8, 123 + "sliceY": 0, 124 + "flipX": false, 125 + "flipY": false, 126 + "palette": 0, 127 + "paletteIndex": 0, 128 + "objPalette": "OBP0", 129 + "priority": false 130 + } 131 + ] 132 + } 133 + ] 134 + }, 135 + { 136 + "id": "336dae45-eceb-4560-b1de-216d8bc33f92", 137 + "frames": [ 138 + { 139 + "id": "58ed464b-1a79-49a9-a5fa-138776eedd4f", 140 + "tiles": [] 141 + } 142 + ] 143 + }, 144 + { 145 + "id": "1ae0034b-0586-4bb6-9b7b-ef85eff01b07", 146 + "frames": [ 147 + { 148 + "id": "4d672da2-5d75-4890-b120-dbf90102e657", 149 + "tiles": [] 150 + } 151 + ] 152 + }, 153 + { 154 + "id": "4f325c7c-6920-4931-9895-90143ab32d74", 155 + "frames": [ 156 + { 157 + "id": "9b8a8826-7fef-4046-9b5d-2623a51d4ebd", 158 + "tiles": [] 159 + } 160 + ] 161 + }, 162 + { 163 + "id": "89c7a4f2-17a2-45bb-83e5-ab51d2e9e325", 164 + "frames": [ 165 + { 166 + "id": "66acaf4e-12d0-4fc8-9212-a950f6409ca8", 167 + "tiles": [] 168 + } 169 + ] 170 + } 171 + ] 172 + } 173 + ], 174 + "numTiles": 5, 175 + "canvasWidth": 16, 176 + "canvasHeight": 16, 177 + "boundsX": 0, 178 + "boundsY": 0, 179 + "boundsWidth": 16, 180 + "boundsHeight": 16, 181 + "animSpeed": 15 182 + }
+356
gb/project/sprites/actor_animated.gbsres
··· 1 + { 2 + "_resourceType": "sprite", 3 + "id": "581d34d0-9591-4e6e-a609-1d94f203b0cd", 4 + "name": "actor_animated", 5 + "symbol": "sprite_actor_animated", 6 + "numFrames": 6, 7 + "filename": "actor_animated.png", 8 + "checksum": "cd6c8ebac31ccd6a325b8a7e94a05d442ae6725e", 9 + "width": 96, 10 + "height": 16, 11 + "states": [ 12 + { 13 + "id": "ce938dce-afdb-4ffc-bd45-5685c6cf78c5", 14 + "name": "", 15 + "animationType": "multi_movement", 16 + "flipLeft": true, 17 + "animations": [ 18 + { 19 + "id": "0218ae39-514d-40e8-981b-06aadbe8b5df", 20 + "frames": [ 21 + { 22 + "id": "52ad1d99-2142-4646-806f-7e98ffb49744", 23 + "tiles": [ 24 + { 25 + "id": "4575085b-128a-46e9-9a33-70c5ad5c551f", 26 + "x": 0, 27 + "y": 0, 28 + "sliceX": 64, 29 + "sliceY": 0, 30 + "flipX": false, 31 + "flipY": false, 32 + "palette": 0, 33 + "paletteIndex": 0, 34 + "objPalette": "OBP0", 35 + "priority": false 36 + }, 37 + { 38 + "id": "f69ec50d-9308-408f-b7dc-f70910e1f28c", 39 + "x": 8, 40 + "y": 0, 41 + "sliceX": 72, 42 + "sliceY": 0, 43 + "flipX": false, 44 + "flipY": false, 45 + "palette": 0, 46 + "paletteIndex": 0, 47 + "objPalette": "OBP0", 48 + "priority": false 49 + } 50 + ] 51 + } 52 + ] 53 + }, 54 + { 55 + "id": "0e7a0652-4d65-42fa-a132-7990d6bf2be0", 56 + "frames": [ 57 + { 58 + "id": "03bebd67-2463-4591-89d7-a79fca803d97", 59 + "tiles": [] 60 + } 61 + ] 62 + }, 63 + { 64 + "id": "ea5f8749-2233-4d96-9f58-3563d1342921", 65 + "frames": [ 66 + { 67 + "id": "9a46acfc-e6d7-40ab-bc32-250210299a1b", 68 + "tiles": [ 69 + { 70 + "id": "b3c9c1d3-9457-493a-a1a0-984f10f49f09", 71 + "x": 0, 72 + "y": 0, 73 + "sliceX": 32, 74 + "sliceY": 0, 75 + "flipX": false, 76 + "flipY": false, 77 + "palette": 0, 78 + "paletteIndex": 0, 79 + "objPalette": "OBP0", 80 + "priority": false 81 + }, 82 + { 83 + "id": "cdfdf21b-e964-4bda-884b-b783da94988b", 84 + "x": 8, 85 + "y": 0, 86 + "sliceX": 40, 87 + "sliceY": 0, 88 + "flipX": false, 89 + "flipY": false, 90 + "palette": 0, 91 + "paletteIndex": 0, 92 + "objPalette": "OBP0", 93 + "priority": false 94 + } 95 + ] 96 + } 97 + ] 98 + }, 99 + { 100 + "id": "52f6a5ec-ac99-4bc2-b5d8-8962a292f1aa", 101 + "frames": [ 102 + { 103 + "id": "97cc8146-ddfd-4b90-8382-a54e1b98305a", 104 + "tiles": [ 105 + { 106 + "id": "47fad96b-1d1e-4123-ad17-b8fdddc79220", 107 + "x": 0, 108 + "y": 0, 109 + "sliceX": 0, 110 + "sliceY": 0, 111 + "flipX": false, 112 + "flipY": false, 113 + "palette": 0, 114 + "paletteIndex": 0, 115 + "objPalette": "OBP0", 116 + "priority": false 117 + }, 118 + { 119 + "id": "f040d231-2bd5-4b83-b69f-925eb46328f3", 120 + "x": 8, 121 + "y": 0, 122 + "sliceX": 8, 123 + "sliceY": 0, 124 + "flipX": false, 125 + "flipY": false, 126 + "palette": 0, 127 + "paletteIndex": 0, 128 + "objPalette": "OBP0", 129 + "priority": false 130 + } 131 + ] 132 + } 133 + ] 134 + }, 135 + { 136 + "id": "f6926ffc-a46a-4148-88c7-59cd7806da8b", 137 + "frames": [ 138 + { 139 + "id": "90a92b91-2895-4dd1-a76f-59f7a5ed4fc1", 140 + "tiles": [ 141 + { 142 + "id": "a0095ca1-f658-4d43-9f51-1f309ee12c59", 143 + "x": 0, 144 + "y": 0, 145 + "sliceX": 80, 146 + "sliceY": 0, 147 + "flipX": false, 148 + "flipY": false, 149 + "palette": 0, 150 + "paletteIndex": 0, 151 + "objPalette": "OBP0", 152 + "priority": false 153 + }, 154 + { 155 + "id": "57d24bda-991b-4da8-8b9a-27b3a84c10e2", 156 + "x": 8, 157 + "y": 0, 158 + "sliceX": 88, 159 + "sliceY": 0, 160 + "flipX": false, 161 + "flipY": false, 162 + "palette": 0, 163 + "paletteIndex": 0, 164 + "objPalette": "OBP0", 165 + "priority": false 166 + } 167 + ] 168 + }, 169 + { 170 + "id": "830648ee-3b82-474b-ba1c-78be727c4432", 171 + "tiles": [ 172 + { 173 + "id": "06d000ef-ffdb-4fb3-842b-faa6bc1825b2", 174 + "x": 0, 175 + "y": 0, 176 + "sliceX": 64, 177 + "sliceY": 0, 178 + "flipX": false, 179 + "flipY": false, 180 + "palette": 0, 181 + "paletteIndex": 0, 182 + "objPalette": "OBP0", 183 + "priority": false 184 + }, 185 + { 186 + "id": "f16d9b17-b555-4262-b9f8-b7c2f3804cf3", 187 + "x": 8, 188 + "y": 0, 189 + "sliceX": 72, 190 + "sliceY": 0, 191 + "flipX": false, 192 + "flipY": false, 193 + "palette": 0, 194 + "paletteIndex": 0, 195 + "objPalette": "OBP0", 196 + "priority": false 197 + } 198 + ] 199 + } 200 + ] 201 + }, 202 + { 203 + "id": "211cad43-2a82-4c67-a346-f9afe2fcc824", 204 + "frames": [ 205 + { 206 + "id": "ef0ab6ed-ecb7-4160-93ed-aee994561fa8", 207 + "tiles": [] 208 + } 209 + ] 210 + }, 211 + { 212 + "id": "9b7654ab-4161-4e61-b089-5b87c51ff48a", 213 + "frames": [ 214 + { 215 + "id": "c27cf825-3e90-4384-a3f1-4d38f8003c7a", 216 + "tiles": [ 217 + { 218 + "id": "5d1c7b68-7d08-4718-9a9b-ece906dcf663", 219 + "x": 0, 220 + "y": 0, 221 + "sliceX": 48, 222 + "sliceY": 0, 223 + "flipX": false, 224 + "flipY": false, 225 + "palette": 0, 226 + "paletteIndex": 0, 227 + "objPalette": "OBP0", 228 + "priority": false 229 + }, 230 + { 231 + "id": "16f71c74-33ce-4526-9a31-23426c132989", 232 + "x": 8, 233 + "y": 0, 234 + "sliceX": 56, 235 + "sliceY": 0, 236 + "flipX": false, 237 + "flipY": false, 238 + "palette": 0, 239 + "paletteIndex": 0, 240 + "objPalette": "OBP0", 241 + "priority": false 242 + } 243 + ] 244 + }, 245 + { 246 + "id": "84bdf127-b1c1-4cf9-8265-e9bc36369388", 247 + "tiles": [ 248 + { 249 + "id": "5dff43c1-42e5-49c0-893d-f42c205c7494", 250 + "x": 0, 251 + "y": 0, 252 + "sliceX": 32, 253 + "sliceY": 0, 254 + "flipX": false, 255 + "flipY": false, 256 + "palette": 0, 257 + "paletteIndex": 0, 258 + "objPalette": "OBP0", 259 + "priority": false 260 + }, 261 + { 262 + "id": "81a66d32-ce87-4dab-b884-3762b3d394ee", 263 + "x": 8, 264 + "y": 0, 265 + "sliceX": 40, 266 + "sliceY": 0, 267 + "flipX": false, 268 + "flipY": false, 269 + "palette": 0, 270 + "paletteIndex": 0, 271 + "objPalette": "OBP0", 272 + "priority": false 273 + } 274 + ] 275 + } 276 + ] 277 + }, 278 + { 279 + "id": "b0445f1a-e053-495a-bd68-1c6ecf99b2f4", 280 + "frames": [ 281 + { 282 + "id": "0d972380-a934-4318-8ebf-58a1faf5800e", 283 + "tiles": [ 284 + { 285 + "id": "43087f62-d9ed-4b9a-83ea-f4554cc48ca7", 286 + "x": 0, 287 + "y": 0, 288 + "sliceX": 16, 289 + "sliceY": 0, 290 + "flipX": false, 291 + "flipY": false, 292 + "palette": 0, 293 + "paletteIndex": 0, 294 + "objPalette": "OBP0", 295 + "priority": false 296 + }, 297 + { 298 + "id": "33e1fdfa-b0e3-4f14-ae45-9fa95b398456", 299 + "x": 8, 300 + "y": 0, 301 + "sliceX": 24, 302 + "sliceY": 0, 303 + "flipX": false, 304 + "flipY": false, 305 + "palette": 0, 306 + "paletteIndex": 0, 307 + "objPalette": "OBP0", 308 + "priority": false 309 + } 310 + ] 311 + }, 312 + { 313 + "id": "8c5cffd7-1dc4-476e-a5b2-c9f8515ec98e", 314 + "tiles": [ 315 + { 316 + "id": "6502f65f-e7d5-4f79-adfa-f76648edee7a", 317 + "x": 0, 318 + "y": 0, 319 + "sliceX": 0, 320 + "sliceY": 0, 321 + "flipX": false, 322 + "flipY": false, 323 + "palette": 0, 324 + "paletteIndex": 0, 325 + "objPalette": "OBP0", 326 + "priority": false 327 + }, 328 + { 329 + "id": "33fe1ded-44af-4c0d-ac69-7943eb0e07a7", 330 + "x": 8, 331 + "y": 0, 332 + "sliceX": 8, 333 + "sliceY": 0, 334 + "flipX": false, 335 + "flipY": false, 336 + "palette": 0, 337 + "paletteIndex": 0, 338 + "objPalette": "OBP0", 339 + "priority": false 340 + } 341 + ] 342 + } 343 + ] 344 + } 345 + ] 346 + } 347 + ], 348 + "numTiles": 10, 349 + "canvasWidth": 16, 350 + "canvasHeight": 16, 351 + "boundsX": 0, 352 + "boundsY": 0, 353 + "boundsWidth": 16, 354 + "boundsHeight": 8, 355 + "animSpeed": 15 356 + }
+128
gb/project/sprites/static.gbsres
··· 1 + { 2 + "_resourceType": "sprite", 3 + "id": "daf95270-e30d-423b-9ee7-990ae29f57f6", 4 + "name": "static", 5 + "symbol": "sprite_static", 6 + "numFrames": 1, 7 + "filename": "static.png", 8 + "checksum": "ed08d198cc3dd48f9bfba000769904ae41b36db8", 9 + "width": 16, 10 + "height": 16, 11 + "states": [ 12 + { 13 + "id": "c37ce5b9-288c-45f6-8b07-926ae6f64d52", 14 + "name": "", 15 + "animationType": "fixed", 16 + "flipLeft": false, 17 + "animations": [ 18 + { 19 + "id": "e1e8a579-58fc-4314-9592-d188b16d06b0", 20 + "frames": [ 21 + { 22 + "id": "899df7f2-fc01-4a32-87bd-621caffff6ad", 23 + "tiles": [ 24 + { 25 + "id": "b29ef538-ab11-4f4a-a40d-8a47ed874aab", 26 + "x": 0, 27 + "y": 0, 28 + "sliceX": 0, 29 + "sliceY": 0, 30 + "flipX": false, 31 + "flipY": false, 32 + "palette": 0, 33 + "paletteIndex": 0, 34 + "objPalette": "OBP0", 35 + "priority": false 36 + }, 37 + { 38 + "id": "2e22a4fc-0615-41b3-8fad-54371a5b590a", 39 + "x": 8, 40 + "y": 0, 41 + "sliceX": 8, 42 + "sliceY": 0, 43 + "flipX": false, 44 + "flipY": false, 45 + "palette": 0, 46 + "paletteIndex": 0, 47 + "objPalette": "OBP0", 48 + "priority": false 49 + } 50 + ] 51 + } 52 + ] 53 + }, 54 + { 55 + "id": "07c365c2-1226-4704-b0b5-8880c2855ff8", 56 + "frames": [ 57 + { 58 + "id": "e41a2350-6e59-4ab4-a2d4-9d43f7b4cc4e", 59 + "tiles": [] 60 + } 61 + ] 62 + }, 63 + { 64 + "id": "45a67ac2-ec73-41a0-bfb1-4ed2a5140cda", 65 + "frames": [ 66 + { 67 + "id": "2ee1b43b-1cf5-4fe5-b74e-a4c116a50b97", 68 + "tiles": [] 69 + } 70 + ] 71 + }, 72 + { 73 + "id": "62c4a826-ea90-415b-b9e6-f69ee3fe3cbb", 74 + "frames": [ 75 + { 76 + "id": "71881de0-00c9-4ce0-9908-ea8d1d825b38", 77 + "tiles": [] 78 + } 79 + ] 80 + }, 81 + { 82 + "id": "bd73b47a-7b33-4ea0-8ea4-e372be06c9fb", 83 + "frames": [ 84 + { 85 + "id": "499e3970-c673-46e5-b14d-e46754866b16", 86 + "tiles": [] 87 + } 88 + ] 89 + }, 90 + { 91 + "id": "fa4088e8-c3fb-45f2-a88d-de174898f712", 92 + "frames": [ 93 + { 94 + "id": "63539fbb-8491-4da2-90a0-9038af0d879e", 95 + "tiles": [] 96 + } 97 + ] 98 + }, 99 + { 100 + "id": "b311bbc4-2e23-4ad1-a1c9-246437c13f4e", 101 + "frames": [ 102 + { 103 + "id": "12785685-91cb-46b0-8305-7521ef45595e", 104 + "tiles": [] 105 + } 106 + ] 107 + }, 108 + { 109 + "id": "db0ebf59-c12f-4180-a0a5-b63a935fe40a", 110 + "frames": [ 111 + { 112 + "id": "7a79af70-abae-4d59-adfe-fcd24a5a95a3", 113 + "tiles": [] 114 + } 115 + ] 116 + } 117 + ] 118 + } 119 + ], 120 + "numTiles": 2, 121 + "canvasWidth": 16, 122 + "canvasHeight": 16, 123 + "boundsX": 0, 124 + "boundsY": 0, 125 + "boundsWidth": 16, 126 + "boundsHeight": 16, 127 + "animSpeed": 15 128 + }
+4
gb/project/variables.gbsres
··· 1 + { 2 + "_resourceType": "variables", 3 + "variables": [] 4 + }