├── .DS_Store ├── .gitignore ├── README.md ├── episode_000 ├── .gitignore ├── README.md ├── app.js ├── index.html ├── now.json └── styles.css ├── episode_001 ├── .gitignore ├── README.md ├── index.html ├── js │ ├── app.js │ └── chickens.js └── styles.css ├── episode_002 ├── README.md ├── index.html └── src │ ├── app.js │ ├── getCountries.js │ ├── styles.css │ └── tmi.min.js ├── episode_003 ├── README.md └── soundboard │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt │ ├── src │ ├── App.js │ ├── SoundPlayer.js │ ├── index.css │ ├── index.js │ └── sounds │ │ ├── 3d-printer.mp3 │ │ ├── beans.mp3 │ │ ├── bg-music.mp3 │ │ ├── crowd.mp3 │ │ ├── hair.mp3 │ │ ├── kiss.mp3 │ │ ├── kittens.mp3 │ │ ├── mummy.mp3 │ │ └── plunger.mp3 │ └── yarn.lock ├── episode_004 ├── README.md └── gif-kebab │ ├── index.html │ ├── src │ └── index.js │ └── styles.css ├── episode_005 ├── README.md └── password │ ├── app.js │ ├── images │ └── bonsai.png │ ├── index.html │ ├── styles.css │ └── tmi.min.js ├── episode_006 ├── README.md ├── app.js ├── index.html └── sounds │ ├── bad.mp3 │ └── good.mp3 ├── episode_007 ├── README.md ├── fonts │ ├── helvetiker_bold.typeface.json │ └── helvetiker_regular.typeface.json ├── index.html ├── main.css ├── textures │ ├── chinese_garden.jpg │ └── desert.jpg ├── three.module.js └── tmi.min.js ├── episode_008 ├── README.md ├── app.js ├── battery.png ├── bonzi-cursor.png ├── butter.png ├── index.html ├── low-battery.png ├── macbook.jpg ├── macbook.png ├── rainbow.png └── styles.css ├── episode_009 ├── README.md ├── app.js ├── can.png ├── index.html ├── kitten-paw.png └── styles.css ├── episode_010 ├── README.md ├── app.js ├── cheesecake.png ├── cloud-1.png ├── cloud-2.png ├── cloud-3.png ├── cloud-4.png ├── clouds.png ├── dino │ ├── jump.gif │ └── walk.gif ├── foods.png ├── index.html ├── styles.css └── waffle.png ├── episode_011 ├── .DS_Store ├── README.md └── app │ ├── .gitignore │ ├── README.md │ ├── kitten-meow.mp3 │ ├── kitten-meow.mp3.asd │ ├── meow-C.wav │ ├── meow-C.wav.asd │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ ├── meow-C.mp3 │ └── robots.txt │ ├── src │ ├── App.js │ ├── App.module.css │ ├── assets │ │ └── kitten-paw.png │ ├── index.css │ └── index.js │ └── yarn.lock ├── episode_012 ├── .DS_Store ├── README.md ├── aliens-as-a-service │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── assets │ │ │ ├── alien.png │ │ │ └── hats │ │ │ │ ├── 11.png │ │ │ │ ├── 16.png │ │ │ │ ├── 17.png │ │ │ │ ├── 18.png │ │ │ │ ├── 19.png │ │ │ │ ├── 20.png │ │ │ │ ├── 21.png │ │ │ │ ├── 22.png │ │ │ │ ├── 23.png │ │ │ │ ├── 24.png │ │ │ │ ├── 25.png │ │ │ │ ├── 26.png │ │ │ │ ├── 3.png │ │ │ │ ├── 33.png │ │ │ │ ├── 34.png │ │ │ │ ├── 36.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ ├── 8.png │ │ │ │ └── 9.png │ │ ├── favicon.png │ │ ├── global.css │ │ └── index.html │ ├── rollup.config.js │ ├── scripts │ │ └── setupTypeScript.js │ └── src │ │ ├── App.svelte │ │ └── main.js ├── assets │ ├── .DS_Store │ ├── 300 Pixel Art Style Icons #6.rar │ ├── 300 Pixel Art Style Icons #6 │ │ ├── Pixel Art Icons #6.png │ │ └── Pixel Art Icons #6.psd │ ├── Pixel_Art_Icons_6.svg │ ├── Selection.zip │ ├── Selection │ │ ├── .DS_Store │ │ ├── 0.png │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 14.png │ │ ├── 15.png │ │ ├── 2.png │ │ ├── 29.png │ │ ├── 30.png │ │ ├── 31.png │ │ ├── 32.png │ │ └── 35.png │ ├── alien - ImABurntHouse.svg │ └── alien.png └── my-alien.png ├── episode_013 ├── README.md └── twitch-equilibrium │ ├── .browserslistrc │ ├── .editorconfig │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── babel.config.js │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── index.html │ └── tmi.min.js │ ├── src │ ├── App.vue │ └── main.js │ └── vue.config.js ├── episode_014 ├── README.md └── overbrewed │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt │ └── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── components │ ├── CoffeeCup.js │ ├── CoffeeCup.module.css │ ├── Game.js │ ├── Game.module.css │ ├── Ingredients.js │ ├── Ingredients.module.css │ ├── OrderBox.js │ └── OrderBox.module.css │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── plastic-cup-svgrepo-com.svg │ ├── reportWebVitals.js │ └── setupTests.js ├── episode_015 ├── .DS_Store ├── README.md ├── netflix-heist │ ├── air-balloon.png │ ├── app.js │ ├── cloud.webp │ ├── index.html │ ├── styles.css │ ├── titles.json │ └── tmi.min.js └── netflix-scrape │ └── index.js ├── episode_016 ├── README.md ├── app.js ├── images │ ├── Jte3nk.gif │ ├── YzXcbf.gif │ ├── clothes.gif │ ├── dragon.gif │ ├── frog.png │ ├── norwayflag.gif │ ├── p5DoH+.gif │ └── pants.png └── index.html ├── episode_017 ├── README.md ├── recipe-book │ ├── app.js │ ├── index.html │ ├── recipes.json │ └── styles.css └── recipe-scraper │ ├── index.js │ ├── package-lock.json │ ├── package.json │ └── recipes.json ├── episode_018 ├── README.md └── elephant-in-the-room │ ├── app.js │ ├── elephants.js │ ├── index.html │ ├── styles.css │ └── tmi.min.js ├── episode_019 ├── README.md ├── app.js ├── index.html └── styles.css ├── episode_020 ├── .DS_Store ├── CNAME ├── README.md ├── app.js ├── images.json ├── index.html ├── morgan.png ├── quotes.json ├── quotes │ ├── change.wav │ ├── dream.wav │ ├── hard-to-fail.wav │ ├── never.wav │ ├── normalize.sh │ ├── ownlife.wav │ ├── reach-a-port.wav │ ├── success-dictionary.wav │ ├── success.wav │ └── sunshine.wav ├── space.wav └── styles.css ├── episode_021 ├── README.md ├── app.js ├── door.png ├── house-bg.png ├── index.html └── styles.css ├── episode_022 ├── .DS_Store ├── README.md ├── game.js ├── index.html └── sprites │ ├── .DS_Store │ ├── LPC_house_interior.zip │ ├── Modern_Interiors_Free_v2.2.zip │ ├── grass_biome.tsj │ ├── grass_biome.tsx │ ├── house │ ├── .DS_Store │ ├── credits.txt │ ├── interior.png │ ├── preview.png │ └── tiles │ │ ├── .DS_Store │ │ ├── tile000.png │ │ ├── tile001.png │ │ ├── tile002.png │ │ ├── tile003.png │ │ ├── tile004.png │ │ ├── tile005.png │ │ ├── tile006.png │ │ ├── tile007.png │ │ ├── tile008.png │ │ ├── tile009.png │ │ ├── tile010.png │ │ ├── tile011.png │ │ ├── tile012.png │ │ ├── tile013.png │ │ ├── tile014.png │ │ ├── tile015.png │ │ ├── tile016.png │ │ ├── tile017.png │ │ ├── tile018.png │ │ ├── tile019.png │ │ ├── tile020.png │ │ ├── tile021.png │ │ ├── tile022.png │ │ ├── tile023.png │ │ ├── tile024.png │ │ ├── tile025.png │ │ ├── tile026.png │ │ ├── tile027.png │ │ ├── tile028.png │ │ ├── tile029.png │ │ ├── tile030.png │ │ ├── tile031.png │ │ ├── tile032.png │ │ ├── tile033.png │ │ ├── tile034.png │ │ ├── tile035.png │ │ ├── tile036.png │ │ ├── tile037.png │ │ ├── tile038.png │ │ ├── tile039.png │ │ ├── tile040.png │ │ ├── tile041.png │ │ ├── tile042.png │ │ ├── tile043.png │ │ ├── tile044.png │ │ ├── tile045.png │ │ ├── tile046.png │ │ ├── tile047.png │ │ ├── tile048.png │ │ ├── tile049.png │ │ ├── tile050.png │ │ ├── tile051.png │ │ ├── tile052.png │ │ ├── tile053.png │ │ ├── tile054.png │ │ ├── tile055.png │ │ ├── tile056.png │ │ ├── tile057.png │ │ ├── tile058.png │ │ ├── tile059.png │ │ ├── tile060.png │ │ ├── tile061.png │ │ ├── tile062.png │ │ ├── tile063.png │ │ ├── tile064.png │ │ ├── tile065.png │ │ ├── tile066.png │ │ ├── tile067.png │ │ ├── tile068.png │ │ ├── tile069.png │ │ ├── tile070.png │ │ ├── tile071.png │ │ ├── tile072.png │ │ ├── tile073.png │ │ ├── tile074.png │ │ ├── tile075.png │ │ ├── tile076.png │ │ ├── tile077.png │ │ ├── tile078.png │ │ ├── tile079.png │ │ ├── tile080.png │ │ ├── tile081.png │ │ ├── tile082.png │ │ ├── tile083.png │ │ ├── tile084.png │ │ ├── tile085.png │ │ ├── tile086.png │ │ ├── tile087.png │ │ ├── tile088.png │ │ ├── tile089.png │ │ ├── tile090.png │ │ ├── tile091.png │ │ ├── tile092.png │ │ ├── tile093.png │ │ ├── tile094.png │ │ ├── tile095.png │ │ ├── tile096.png │ │ ├── tile097.png │ │ ├── tile098.png │ │ ├── tile099.png │ │ ├── tile100.png │ │ ├── tile101.png │ │ ├── tile102.png │ │ ├── tile103.png │ │ ├── tile104.png │ │ ├── tile105.png │ │ ├── tile106.png │ │ ├── tile107.png │ │ ├── tile108.png │ │ ├── tile109.png │ │ ├── tile110.png │ │ ├── tile111.png │ │ ├── tile112.png │ │ ├── tile113.png │ │ ├── tile114.png │ │ ├── tile115.png │ │ ├── tile116.png │ │ ├── tile117.png │ │ ├── tile118.png │ │ ├── tile119.png │ │ ├── tile120.png │ │ ├── tile121.png │ │ ├── tile122.png │ │ ├── tile123.png │ │ ├── tile124.png │ │ ├── tile125.png │ │ ├── tile126.png │ │ ├── tile127.png │ │ ├── tile128.png │ │ ├── tile129.png │ │ ├── tile130.png │ │ ├── tile131.png │ │ ├── tile132.png │ │ ├── tile133.png │ │ ├── tile134.png │ │ ├── tile135.png │ │ ├── tile136.png │ │ ├── tile137.png │ │ ├── tile138.png │ │ ├── tile139.png │ │ ├── tile140.png │ │ ├── tile141.png │ │ ├── tile142.png │ │ ├── tile143.png │ │ ├── tile144.png │ │ ├── tile145.png │ │ ├── tile146.png │ │ ├── tile147.png │ │ ├── tile148.png │ │ ├── tile149.png │ │ ├── tile150.png │ │ ├── tile151.png │ │ ├── tile152.png │ │ ├── tile153.png │ │ ├── tile154.png │ │ ├── tile155.png │ │ ├── tile156.png │ │ ├── tile157.png │ │ ├── tile158.png │ │ ├── tile159.png │ │ ├── tile160.png │ │ ├── tile161.png │ │ ├── tile162.png │ │ ├── tile163.png │ │ ├── tile164.png │ │ ├── tile165.png │ │ ├── tile166.png │ │ ├── tile167.png │ │ ├── tile168.png │ │ ├── tile169.png │ │ ├── tile170.png │ │ ├── tile171.png │ │ ├── tile172.png │ │ ├── tile173.png │ │ ├── tile174.png │ │ ├── tile175.png │ │ ├── tile176.png │ │ ├── tile177.png │ │ ├── tile178.png │ │ ├── tile179.png │ │ ├── tile180.png │ │ ├── tile181.png │ │ ├── tile182.png │ │ ├── tile183.png │ │ ├── tile184.png │ │ ├── tile185.png │ │ ├── tile186.png │ │ ├── tile187.png │ │ ├── tile188.png │ │ ├── tile189.png │ │ ├── tile190.png │ │ ├── tile191.png │ │ ├── tile192.png │ │ ├── tile193.png │ │ ├── tile194.png │ │ ├── tile195.png │ │ ├── tile196.png │ │ ├── tile197.png │ │ ├── tile198.png │ │ ├── tile199.png │ │ ├── tile200.png │ │ ├── tile201.png │ │ ├── tile202.png │ │ ├── tile203.png │ │ ├── tile204.png │ │ ├── tile205.png │ │ ├── tile206.png │ │ ├── tile207.png │ │ ├── tile208.png │ │ ├── tile209.png │ │ ├── tile210.png │ │ ├── tile211.png │ │ ├── tile212.png │ │ ├── tile213.png │ │ ├── tile214.png │ │ ├── tile215.png │ │ ├── tile216.png │ │ ├── tile217.png │ │ ├── tile218.png │ │ ├── tile219.png │ │ ├── tile220.png │ │ ├── tile221.png │ │ ├── tile222.png │ │ ├── tile223.png │ │ ├── tile224.png │ │ ├── tile225.png │ │ ├── tile226.png │ │ ├── tile227.png │ │ ├── tile228.png │ │ ├── tile229.png │ │ ├── tile230.png │ │ ├── tile231.png │ │ ├── tile232.png │ │ ├── tile233.png │ │ ├── tile234.png │ │ ├── tile235.png │ │ ├── tile236.png │ │ ├── tile237.png │ │ ├── tile238.png │ │ ├── tile239.png │ │ ├── tile240.png │ │ ├── tile241.png │ │ ├── tile242.png │ │ ├── tile243.png │ │ ├── tile244.png │ │ ├── tile245.png │ │ ├── tile246.png │ │ ├── tile247.png │ │ ├── tile248.png │ │ ├── tile249.png │ │ ├── tile250.png │ │ ├── tile251.png │ │ ├── tile252.png │ │ ├── tile253.png │ │ ├── tile254.png │ │ └── tile255.png │ ├── map1.png │ ├── map1.tmx │ ├── map2.png │ ├── map2.tmx │ ├── overworld_tileset_grass.ase │ ├── overworld_tileset_grass.png │ ├── palette.ase │ ├── pikachu.png │ ├── preview.png │ ├── tile000.png │ ├── tile001.png │ ├── tile002.png │ ├── tile003.png │ ├── tile004.png │ ├── tile005.png │ ├── tile006.png │ ├── tile007.png │ ├── tile008.png │ ├── tile009.png │ ├── tile010.png │ ├── tile011.png │ ├── tile012.png │ ├── tile013.png │ ├── tile014.png │ ├── tile015.png │ ├── tile016.png │ ├── tile017.png │ ├── tile018.png │ ├── tile019.png │ ├── tile020.png │ ├── tile021.png │ ├── tile022.png │ ├── tile023.png │ ├── tile024.png │ ├── tile025.png │ ├── tile026.png │ ├── tile027.png │ ├── tile028.png │ ├── tile029.png │ ├── tile030.png │ ├── tile031.png │ ├── tile032.png │ ├── tile033.png │ ├── tile034.png │ ├── tile035.png │ ├── tile036.png │ ├── tile037.png │ ├── tile038.png │ ├── tile039.png │ ├── tile040.png │ ├── tile041.png │ ├── tile042.png │ ├── tile043.png │ ├── tile044.png │ ├── tile045.png │ ├── tile046.png │ ├── tile047.png │ ├── tile048.png │ ├── tile049.png │ ├── tile050.png │ ├── tile051.png │ ├── tile052.png │ ├── tile053.png │ ├── tile054.png │ ├── tile055.png │ ├── tile056.png │ ├── tile057.png │ ├── tile058.png │ ├── tile059.png │ ├── tile060.png │ ├── tile061.png │ ├── tile062.png │ ├── tile063.png │ ├── tile064.png │ ├── tile065.png │ ├── tile066.png │ ├── tile067.png │ ├── tile068.png │ ├── tile069.png │ ├── tile070.png │ ├── tile071.png │ ├── tile072.png │ ├── tile073.png │ ├── tile074.png │ ├── tile075.png │ ├── tile076.png │ ├── tile077.png │ ├── tile078.png │ ├── tile079.png │ ├── tile080.png │ ├── tile081.png │ ├── tile082.png │ ├── tile083.png │ ├── tile084.png │ ├── tile085.png │ ├── tile086.png │ ├── tile087.png │ ├── tile088.png │ ├── tile089.png │ ├── tile090.png │ ├── tile091.png │ ├── tile092.png │ ├── tile093.png │ ├── tile094.png │ ├── tile095.png │ ├── tile096.png │ ├── tile097.png │ ├── tile098.png │ ├── tile099.png │ ├── tile100.png │ ├── tile101.png │ ├── tile102.png │ ├── tile103.png │ ├── tile104.png │ ├── tile105.png │ ├── tile106.png │ ├── tile107.png │ ├── tile108.png │ ├── tile109.png │ ├── tile110.png │ ├── tile111.png │ ├── tile112.png │ ├── tile113.png │ ├── tile114.png │ ├── tile115.png │ ├── tile116.png │ ├── tile117.png │ ├── tile118.png │ ├── tile119.png │ ├── tile120.png │ ├── tile121.png │ ├── tile122.png │ ├── tile123.png │ ├── tile124.png │ ├── tile125.png │ ├── tile126.png │ ├── tile127.png │ ├── tile128.png │ ├── tile129.png │ ├── tile130.png │ ├── tile131.png │ ├── tile132.png │ ├── tile133.png │ ├── tile134.png │ ├── tile135.png │ ├── tile136.png │ ├── tile137.png │ ├── tile138.png │ ├── tile139.png │ ├── tile140.png │ ├── tile141.png │ ├── tile142.png │ ├── tile143.png │ ├── tile144.png │ ├── tile145.png │ ├── tile146.png │ ├── tile147.png │ ├── tile148.png │ ├── tile149.png │ ├── tile150.png │ ├── tile151.png │ ├── tile152.png │ ├── tile153.png │ ├── tile154.png │ ├── tile155.png │ ├── tile156.png │ ├── tile157.png │ ├── tile158.png │ ├── tile159.png │ ├── tile160.png │ ├── tile161.png │ ├── tile162.png │ ├── tile163.png │ ├── tile164.png │ ├── tile165.png │ ├── tile166.png │ ├── tile167.png │ ├── tile168.png │ ├── tile169.png │ ├── tile170.png │ ├── tile171.png │ ├── tile172.png │ ├── tile173.png │ ├── tile174.png │ ├── tile175.png │ ├── tile176.png │ ├── tile177.png │ ├── tile178.png │ ├── tile179.png │ ├── tile180.png │ ├── tile181.png │ ├── tile182.png │ ├── tile183.png │ ├── tile184.png │ ├── tile185.png │ ├── tile186.png │ ├── tile187.png │ ├── tile188.png │ ├── tile189.png │ ├── tile190.png │ ├── tile191.png │ ├── tile192.png │ ├── tile193.png │ ├── tile194.png │ ├── tile195.png │ ├── tile196.png │ ├── tile197.png │ ├── tile198.png │ ├── tile199.png │ ├── tile200.png │ ├── tile201.png │ ├── tile202.png │ ├── tile203.png │ ├── tile204.png │ ├── tile205.png │ ├── tile206.png │ ├── tile207.png │ ├── tile208.png │ ├── tile209.png │ ├── tile210.png │ ├── tile211.png │ ├── tile212.png │ ├── tile213.png │ ├── tile214.png │ ├── tile215.png │ ├── tile216.png │ ├── tile217.png │ ├── tile218.png │ ├── tile219.png │ ├── tile220.png │ ├── tile221.png │ ├── tile222.png │ ├── tile223.png │ ├── tile224.png │ ├── tile225.png │ ├── tile226.png │ ├── tile227.png │ ├── tile228.png │ ├── tile229.png │ ├── tile230.png │ ├── tile231.png │ ├── tile232.png │ ├── tile233.png │ ├── tile234.png │ ├── tile235.png │ ├── tile236.png │ ├── tile237.png │ ├── tile238.png │ ├── tile239.png │ ├── tile240.png │ ├── tile241.png │ ├── tile242.png │ ├── tile243.png │ ├── tile244.png │ ├── tile245.png │ ├── tile246.png │ ├── tile247.png │ ├── tile248.png │ ├── tile249.png │ ├── tile250.png │ └── tile251.png └── reward-listener ├── .env.sample ├── .gitignore ├── .vscode └── settings.json ├── README.md ├── package-lock.json ├── package.json └── src └── index.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/.DS_Store -------------------------------------------------------------------------------- /episode_000/.gitignore: -------------------------------------------------------------------------------- 1 | .vercel -------------------------------------------------------------------------------- /episode_000/now.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "alias": [ 4 | "bean-hiker" 5 | ] 6 | } -------------------------------------------------------------------------------- /episode_001/.gitignore: -------------------------------------------------------------------------------- 1 | .vercel -------------------------------------------------------------------------------- /episode_001/README.md: -------------------------------------------------------------------------------- 1 | # CODING IMPROV - Episode 1 2 | 3 | # THEME 4 | r3m00n2 - Tinderswipe 5 | 6 | ## Name 7 | 8 | * ~~Fowl Friends~~ 9 | * Chicken Tender 10 | 11 | ## Suggestions 12 | - [x] GuanTheThird - Chicken 13 | - [x] makesense6 - LOVE 14 | - [x] callumchaney - pineapples 15 | - [x] MurdocTurner - 🐲 16 | - [x] JordynTheCoder - Game 17 | - [x] melonai - keyboard 18 | - [x] proxnnnn - hooks 19 | - [x] Simsim021 - lightbulb 20 | - [x] JulianNicholls - sun 21 | -------------------------------------------------------------------------------- /episode_002/README.md: -------------------------------------------------------------------------------- 1 | # CODING IMPROV - Episode 2 2 | 3 | ## Theme 4 | 5 | * [x] justsnaf - Tournament 6 | 7 | ## Ideas 8 | 9 | * [x] ImTomEddy - United-Kingdom 10 | * [x] await3d - Netherlands 11 | 12 | * [ ] GuanTheThird - explosion 13 | * [ ] pepeok12 - Tacos! 🌮 14 | * [ ] TurboBiscuit_ - banana 🍌 15 | * [ ] joshcoopertech - Ketchup 🍅 16 | * [ ] skycolorx - dolphin 17 | 18 | * [ ] Shaayan - university 19 | * [ ] adrpala93 - climbing 20 | -------------------------------------------------------------------------------- /episode_003/soundboard/.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # production 12 | /build 13 | 14 | # misc 15 | .DS_Store 16 | .env.local 17 | .env.development.local 18 | .env.test.local 19 | .env.production.local 20 | 21 | npm-debug.log* 22 | yarn-debug.log* 23 | yarn-error.log* 24 | -------------------------------------------------------------------------------- /episode_003/soundboard/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_003/soundboard/public/favicon.ico -------------------------------------------------------------------------------- /episode_003/soundboard/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_003/soundboard/public/logo192.png -------------------------------------------------------------------------------- /episode_003/soundboard/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_003/soundboard/public/logo512.png -------------------------------------------------------------------------------- /episode_003/soundboard/public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /episode_003/soundboard/src/SoundPlayer.js: -------------------------------------------------------------------------------- 1 | const SoundPlayer = ({ 2 | emoji, 3 | playSound, 4 | }) => { 5 | return ( 6 |
7 | {emoji} 8 |
9 | ); 10 | }; 11 | 12 | 13 | export default SoundPlayer; 14 | -------------------------------------------------------------------------------- /episode_003/soundboard/src/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom'; 3 | import './index.css'; 4 | import App from './App'; 5 | 6 | ReactDOM.render( 7 | 8 | 9 | , 10 | document.getElementById('root') 11 | ); 12 | -------------------------------------------------------------------------------- /episode_003/soundboard/src/sounds/3d-printer.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_003/soundboard/src/sounds/3d-printer.mp3 -------------------------------------------------------------------------------- /episode_003/soundboard/src/sounds/beans.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_003/soundboard/src/sounds/beans.mp3 -------------------------------------------------------------------------------- /episode_003/soundboard/src/sounds/bg-music.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_003/soundboard/src/sounds/bg-music.mp3 -------------------------------------------------------------------------------- /episode_003/soundboard/src/sounds/crowd.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_003/soundboard/src/sounds/crowd.mp3 -------------------------------------------------------------------------------- /episode_003/soundboard/src/sounds/hair.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_003/soundboard/src/sounds/hair.mp3 -------------------------------------------------------------------------------- /episode_003/soundboard/src/sounds/kiss.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_003/soundboard/src/sounds/kiss.mp3 -------------------------------------------------------------------------------- /episode_003/soundboard/src/sounds/kittens.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_003/soundboard/src/sounds/kittens.mp3 -------------------------------------------------------------------------------- /episode_003/soundboard/src/sounds/mummy.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_003/soundboard/src/sounds/mummy.mp3 -------------------------------------------------------------------------------- /episode_003/soundboard/src/sounds/plunger.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_003/soundboard/src/sounds/plunger.mp3 -------------------------------------------------------------------------------- /episode_004/README.md: -------------------------------------------------------------------------------- 1 | # Idea 2 | 3 | * GIF Kebab: 4 | * An initial gif is presented on the page. Click the gif to retrieve another somewhat 5 | related gif based on AI recognition of the initial image. 6 | 7 | * View the app here: https://gif-kebab.surge.sh/ 8 | 9 | # Suggestions 10 | 11 | * [x] Roger_Voth - Ripple 12 | * [x] Crazyalex123 - Webp 13 | * [x] BF_Moritz - cola 14 | * [x] Acid_Spark - Arrow 15 | * [x] FrozenSpray - kebab 16 | * [x] TgMrP1 - soccer 17 | * [x] docd27 - wasps 18 | * [x] Recapi - ~dof~ dog* 19 | * [x] skignas - AI 20 | * [x] dv_man - test -------------------------------------------------------------------------------- /episode_005/README.md: -------------------------------------------------------------------------------- 1 | # Suggestions 2 | 3 | * Guess the password in the twitch chat. 4 | * If you guess the password, you get to place an item on the screen for a limited amount of time. 5 | 6 | * [ ] deathchargrocks21 - CJ 7 | * [ ] Juanma_vfx - password 8 | * [ ] Artist_shawn14 - rocket 9 | * [ ] Slushing_Zedruu - 3D-Printer 10 | * [ ] devnode_ - Bonsai 11 | * [ ] Limeoats - Limes 12 | * [ ] GerbenKr - Apple 13 | * [ ] Cuzzie91 - pokemon 14 | * [ ] SirTimme - Alpaca 15 | * [ ] PLANKALQL - Mouse -------------------------------------------------------------------------------- /episode_005/password/images/bonsai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_005/password/images/bonsai.png -------------------------------------------------------------------------------- /episode_006/sounds/bad.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_006/sounds/bad.mp3 -------------------------------------------------------------------------------- /episode_006/sounds/good.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_006/sounds/good.mp3 -------------------------------------------------------------------------------- /episode_007/textures/chinese_garden.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_007/textures/chinese_garden.jpg -------------------------------------------------------------------------------- /episode_007/textures/desert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_007/textures/desert.jpg -------------------------------------------------------------------------------- /episode_008/battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_008/battery.png -------------------------------------------------------------------------------- /episode_008/bonzi-cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_008/bonzi-cursor.png -------------------------------------------------------------------------------- /episode_008/butter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_008/butter.png -------------------------------------------------------------------------------- /episode_008/low-battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_008/low-battery.png -------------------------------------------------------------------------------- /episode_008/macbook.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_008/macbook.jpg -------------------------------------------------------------------------------- /episode_008/macbook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_008/macbook.png -------------------------------------------------------------------------------- /episode_008/rainbow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_008/rainbow.png -------------------------------------------------------------------------------- /episode_009/can.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_009/can.png -------------------------------------------------------------------------------- /episode_009/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 |
14 |
15 | 16 | 17 | -------------------------------------------------------------------------------- /episode_009/kitten-paw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_009/kitten-paw.png -------------------------------------------------------------------------------- /episode_010/README.md: -------------------------------------------------------------------------------- 1 | ## Suggestions 2 | 3 | * Dinosaur Jump Game 4 | * Retro Themed 5 | * Jump over Waffles 6 | * Power up with Cheesecake 7 | * Retro sound effects / music 8 | 9 | * [ ] StatniPodporaVzdelavani - retrophilia 10 | * [ ] codico - Dinosaurs 11 | * [ ] DropManiaOfficial - Waffles 12 | * [ ] Cheesecakeman25 - cheesecake 13 | * [ ] FrozenSpray - game 14 | 15 | ## Credits 16 | 17 | * Clouds - https://latenightcoffe.itch.io/2d-pixel-art-semi-realistic-clouds 18 | * Dinosaur - https://samuellee.itch.io/red-dinosaur-animated-pixel-art 19 | * Food - https://ghostpixxells.itch.io/pixelfood -------------------------------------------------------------------------------- /episode_010/cheesecake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_010/cheesecake.png -------------------------------------------------------------------------------- /episode_010/cloud-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_010/cloud-1.png -------------------------------------------------------------------------------- /episode_010/cloud-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_010/cloud-2.png -------------------------------------------------------------------------------- /episode_010/cloud-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_010/cloud-3.png -------------------------------------------------------------------------------- /episode_010/cloud-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_010/cloud-4.png -------------------------------------------------------------------------------- /episode_010/clouds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_010/clouds.png -------------------------------------------------------------------------------- /episode_010/dino/jump.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_010/dino/jump.gif -------------------------------------------------------------------------------- /episode_010/dino/walk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_010/dino/walk.gif -------------------------------------------------------------------------------- /episode_010/foods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_010/foods.png -------------------------------------------------------------------------------- /episode_010/waffle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_010/waffle.png -------------------------------------------------------------------------------- /episode_011/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_011/.DS_Store -------------------------------------------------------------------------------- /episode_011/README.md: -------------------------------------------------------------------------------- 1 | # Suggestions 2 | 3 | * [x] mikebruty - Happy 4 | * [x] SoundOfGaming - big toe 5 | * [x] Nukiepoo - Music 6 | * [x] skyrspr - kittens 7 | 8 | ## Idea 9 | 10 | * Kitten sound musical keyboard! 11 | * Collect a kitten sound(s) 12 | * Play a kitten sound in the key of A 13 | * Play a kitten sound in the key of G 14 | * Display a keyboard on screen 15 | * Click the keys to play that specific tone 16 | 17 | ## Credits 18 | 19 | * Kitten Meow - https://freesound.org/people/Breviceps/sounds/448084/ -------------------------------------------------------------------------------- /episode_011/app/.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # production 12 | /build 13 | 14 | # misc 15 | .DS_Store 16 | .env.local 17 | .env.development.local 18 | .env.test.local 19 | .env.production.local 20 | 21 | npm-debug.log* 22 | yarn-debug.log* 23 | yarn-error.log* 24 | -------------------------------------------------------------------------------- /episode_011/app/kitten-meow.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_011/app/kitten-meow.mp3 -------------------------------------------------------------------------------- /episode_011/app/kitten-meow.mp3.asd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_011/app/kitten-meow.mp3.asd -------------------------------------------------------------------------------- /episode_011/app/meow-C.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_011/app/meow-C.wav -------------------------------------------------------------------------------- /episode_011/app/meow-C.wav.asd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_011/app/meow-C.wav.asd -------------------------------------------------------------------------------- /episode_011/app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_011/app/public/favicon.ico -------------------------------------------------------------------------------- /episode_011/app/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_011/app/public/logo192.png -------------------------------------------------------------------------------- /episode_011/app/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_011/app/public/logo512.png -------------------------------------------------------------------------------- /episode_011/app/public/meow-C.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_011/app/public/meow-C.mp3 -------------------------------------------------------------------------------- /episode_011/app/public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /episode_011/app/src/assets/kitten-paw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_011/app/src/assets/kitten-paw.png -------------------------------------------------------------------------------- /episode_011/app/src/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom'; 3 | import './index.css'; 4 | import App from './App'; 5 | 6 | ReactDOM.render( 7 | 8 | 9 | , 10 | document.getElementById('root') 11 | ); 12 | -------------------------------------------------------------------------------- /episode_012/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_012/.DS_Store -------------------------------------------------------------------------------- /episode_012/aliens-as-a-service/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /public/build/ 3 | 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /episode_012/aliens-as-a-service/public/assets/alien.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_012/aliens-as-a-service/public/assets/alien.png -------------------------------------------------------------------------------- /episode_012/aliens-as-a-service/public/assets/hats/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_012/aliens-as-a-service/public/assets/hats/11.png -------------------------------------------------------------------------------- /episode_012/aliens-as-a-service/public/assets/hats/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_012/aliens-as-a-service/public/assets/hats/16.png -------------------------------------------------------------------------------- /episode_012/aliens-as-a-service/public/assets/hats/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_012/aliens-as-a-service/public/assets/hats/17.png -------------------------------------------------------------------------------- /episode_012/aliens-as-a-service/public/assets/hats/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_012/aliens-as-a-service/public/assets/hats/18.png -------------------------------------------------------------------------------- /episode_012/aliens-as-a-service/public/assets/hats/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_012/aliens-as-a-service/public/assets/hats/19.png -------------------------------------------------------------------------------- /episode_012/aliens-as-a-service/public/assets/hats/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_012/aliens-as-a-service/public/assets/hats/20.png -------------------------------------------------------------------------------- /episode_012/aliens-as-a-service/public/assets/hats/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_012/aliens-as-a-service/public/assets/hats/21.png -------------------------------------------------------------------------------- /episode_012/aliens-as-a-service/public/assets/hats/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_012/aliens-as-a-service/public/assets/hats/22.png -------------------------------------------------------------------------------- /episode_012/aliens-as-a-service/public/assets/hats/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_012/aliens-as-a-service/public/assets/hats/23.png -------------------------------------------------------------------------------- /episode_012/aliens-as-a-service/public/assets/hats/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_012/aliens-as-a-service/public/assets/hats/24.png -------------------------------------------------------------------------------- /episode_012/aliens-as-a-service/public/assets/hats/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_012/aliens-as-a-service/public/assets/hats/25.png -------------------------------------------------------------------------------- /episode_012/aliens-as-a-service/public/assets/hats/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_012/aliens-as-a-service/public/assets/hats/26.png -------------------------------------------------------------------------------- /episode_012/aliens-as-a-service/public/assets/hats/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_012/aliens-as-a-service/public/assets/hats/3.png -------------------------------------------------------------------------------- /episode_012/aliens-as-a-service/public/assets/hats/33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_012/aliens-as-a-service/public/assets/hats/33.png -------------------------------------------------------------------------------- /episode_012/aliens-as-a-service/public/assets/hats/34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_012/aliens-as-a-service/public/assets/hats/34.png -------------------------------------------------------------------------------- /episode_012/aliens-as-a-service/public/assets/hats/36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_012/aliens-as-a-service/public/assets/hats/36.png -------------------------------------------------------------------------------- /episode_012/aliens-as-a-service/public/assets/hats/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_012/aliens-as-a-service/public/assets/hats/4.png -------------------------------------------------------------------------------- /episode_012/aliens-as-a-service/public/assets/hats/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_012/aliens-as-a-service/public/assets/hats/5.png -------------------------------------------------------------------------------- /episode_012/aliens-as-a-service/public/assets/hats/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_012/aliens-as-a-service/public/assets/hats/6.png -------------------------------------------------------------------------------- /episode_012/aliens-as-a-service/public/assets/hats/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_012/aliens-as-a-service/public/assets/hats/7.png -------------------------------------------------------------------------------- /episode_012/aliens-as-a-service/public/assets/hats/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_012/aliens-as-a-service/public/assets/hats/8.png -------------------------------------------------------------------------------- /episode_012/aliens-as-a-service/public/assets/hats/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_012/aliens-as-a-service/public/assets/hats/9.png -------------------------------------------------------------------------------- /episode_012/aliens-as-a-service/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_012/aliens-as-a-service/public/favicon.png -------------------------------------------------------------------------------- /episode_012/aliens-as-a-service/public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Svelte app 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /episode_012/aliens-as-a-service/src/main.js: -------------------------------------------------------------------------------- 1 | import App from './App.svelte'; 2 | 3 | const app = new App({ 4 | target: document.body, 5 | }); 6 | 7 | export default app; 8 | -------------------------------------------------------------------------------- /episode_012/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_012/assets/.DS_Store -------------------------------------------------------------------------------- /episode_012/assets/300 Pixel Art Style Icons #6.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_012/assets/300 Pixel Art Style Icons #6.rar -------------------------------------------------------------------------------- /episode_012/assets/300 Pixel Art Style Icons #6/Pixel Art Icons #6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_012/assets/300 Pixel Art Style Icons #6/Pixel Art Icons #6.png -------------------------------------------------------------------------------- /episode_012/assets/300 Pixel Art Style Icons #6/Pixel Art Icons #6.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_012/assets/300 Pixel Art Style Icons #6/Pixel Art Icons #6.psd -------------------------------------------------------------------------------- /episode_012/assets/Selection.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_012/assets/Selection.zip -------------------------------------------------------------------------------- /episode_012/assets/Selection/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_012/assets/Selection/.DS_Store -------------------------------------------------------------------------------- /episode_012/assets/Selection/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_012/assets/Selection/0.png -------------------------------------------------------------------------------- /episode_012/assets/Selection/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_012/assets/Selection/1.png -------------------------------------------------------------------------------- /episode_012/assets/Selection/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_012/assets/Selection/10.png -------------------------------------------------------------------------------- /episode_012/assets/Selection/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_012/assets/Selection/12.png -------------------------------------------------------------------------------- /episode_012/assets/Selection/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_012/assets/Selection/13.png -------------------------------------------------------------------------------- /episode_012/assets/Selection/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_012/assets/Selection/14.png -------------------------------------------------------------------------------- /episode_012/assets/Selection/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_012/assets/Selection/15.png -------------------------------------------------------------------------------- /episode_012/assets/Selection/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_012/assets/Selection/2.png -------------------------------------------------------------------------------- /episode_012/assets/Selection/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_012/assets/Selection/29.png -------------------------------------------------------------------------------- /episode_012/assets/Selection/30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_012/assets/Selection/30.png -------------------------------------------------------------------------------- /episode_012/assets/Selection/31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_012/assets/Selection/31.png -------------------------------------------------------------------------------- /episode_012/assets/Selection/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_012/assets/Selection/32.png -------------------------------------------------------------------------------- /episode_012/assets/Selection/35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_012/assets/Selection/35.png -------------------------------------------------------------------------------- /episode_012/assets/alien.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_012/assets/alien.png -------------------------------------------------------------------------------- /episode_012/my-alien.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_012/my-alien.png -------------------------------------------------------------------------------- /episode_013/twitch-equilibrium/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /episode_013/twitch-equilibrium/.editorconfig: -------------------------------------------------------------------------------- 1 | [*.{js,jsx,ts,tsx,vue}] 2 | indent_style = space 3 | indent_size = 2 4 | end_of_line = lf 5 | trim_trailing_whitespace = true 6 | insert_final_newline = true 7 | max_line_length = 100 8 | -------------------------------------------------------------------------------- /episode_013/twitch-equilibrium/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | env: { 4 | node: true, 5 | }, 6 | extends: [ 7 | 'plugin:vue/vue3-essential', 8 | '@vue/airbnb', 9 | ], 10 | parserOptions: { 11 | parser: 'babel-eslint', 12 | }, 13 | rules: { 14 | 'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off', 15 | 'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off', 16 | }, 17 | }; 18 | -------------------------------------------------------------------------------- /episode_013/twitch-equilibrium/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | /dist 4 | 5 | 6 | # local env files 7 | .env.local 8 | .env.*.local 9 | 10 | # Log files 11 | npm-debug.log* 12 | yarn-debug.log* 13 | yarn-error.log* 14 | pnpm-debug.log* 15 | 16 | # Editor directories and files 17 | .idea 18 | .vscode 19 | *.suo 20 | *.ntvs* 21 | *.njsproj 22 | *.sln 23 | *.sw? 24 | -------------------------------------------------------------------------------- /episode_013/twitch-equilibrium/README.md: -------------------------------------------------------------------------------- 1 | # twitch-equilibrium 2 | 3 | ## Project setup 4 | ``` 5 | npm install 6 | ``` 7 | 8 | ### Compiles and hot-reloads for development 9 | ``` 10 | npm run serve 11 | ``` 12 | 13 | ### Compiles and minifies for production 14 | ``` 15 | npm run build 16 | ``` 17 | 18 | ### Lints and fixes files 19 | ``` 20 | npm run lint 21 | ``` 22 | 23 | ### Customize configuration 24 | See [Configuration Reference](https://cli.vuejs.org/config/). 25 | -------------------------------------------------------------------------------- /episode_013/twitch-equilibrium/babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: [ 3 | '@vue/cli-plugin-babel/preset', 4 | ], 5 | }; 6 | -------------------------------------------------------------------------------- /episode_013/twitch-equilibrium/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_013/twitch-equilibrium/public/favicon.ico -------------------------------------------------------------------------------- /episode_013/twitch-equilibrium/src/main.js: -------------------------------------------------------------------------------- 1 | import { createApp } from 'vue'; 2 | import App from './App.vue'; 3 | 4 | createApp(App).mount('#app'); 5 | -------------------------------------------------------------------------------- /episode_013/twitch-equilibrium/vue.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | lintOnSave: false, 3 | }; 4 | -------------------------------------------------------------------------------- /episode_014/overbrewed/.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # production 12 | /build 13 | 14 | # misc 15 | .DS_Store 16 | .env.local 17 | .env.development.local 18 | .env.test.local 19 | .env.production.local 20 | 21 | npm-debug.log* 22 | yarn-debug.log* 23 | yarn-error.log* 24 | -------------------------------------------------------------------------------- /episode_014/overbrewed/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_014/overbrewed/public/favicon.ico -------------------------------------------------------------------------------- /episode_014/overbrewed/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_014/overbrewed/public/logo192.png -------------------------------------------------------------------------------- /episode_014/overbrewed/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_014/overbrewed/public/logo512.png -------------------------------------------------------------------------------- /episode_014/overbrewed/public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /episode_014/overbrewed/src/App.css: -------------------------------------------------------------------------------- 1 | .app { 2 | display: flex; 3 | align-items: center; 4 | justify-content: center; 5 | flex-direction: column; 6 | width: 100%; 7 | height: 100%; 8 | background: black; 9 | } 10 | -------------------------------------------------------------------------------- /episode_014/overbrewed/src/App.js: -------------------------------------------------------------------------------- 1 | import './App.css'; 2 | 3 | import Game from './components/Game'; 4 | 5 | function App() { 6 | return ( 7 |
8 | 9 |
10 | ); 11 | } 12 | 13 | export default App; 14 | -------------------------------------------------------------------------------- /episode_014/overbrewed/src/App.test.js: -------------------------------------------------------------------------------- 1 | import { render, screen } from '@testing-library/react'; 2 | import App from './App'; 3 | 4 | test('renders learn react link', () => { 5 | render(); 6 | const linkElement = screen.getByText(/learn react/i); 7 | expect(linkElement).toBeInTheDocument(); 8 | }); 9 | -------------------------------------------------------------------------------- /episode_014/overbrewed/src/components/Ingredients.module.css: -------------------------------------------------------------------------------- 1 | .container { 2 | position: absolute; 3 | left: 102px; 4 | bottom: 125px; 5 | } 6 | 7 | .info { 8 | font-size: 32px; 9 | text-align: center; 10 | color: white; 11 | filter: drop-shadow(-2px 1px 1px red) 12 | } 13 | 14 | .disabled { 15 | opacity: 0.5; 16 | } 17 | 18 | .ingredients { 19 | display: flex; 20 | } 21 | 22 | .ingredient { 23 | border: 2px solid black; 24 | width: 22px; 25 | height: 22px; 26 | margin: 2px; 27 | } 28 | 29 | .ingredient.selected { 30 | border: 3px dashed red; 31 | } -------------------------------------------------------------------------------- /episode_014/overbrewed/src/components/OrderBox.module.css: -------------------------------------------------------------------------------- 1 | .order { 2 | position: absolute; 3 | left: 350px; 4 | top: 30px; 5 | width: 195px; 6 | height: 120px; 7 | color: white; 8 | padding: 10px; 9 | border: 5px solid #7E773A; 10 | opacity: 0.8; 11 | background: linear-gradient(to bottom, #6d6b58, #1B1C1A); 12 | } -------------------------------------------------------------------------------- /episode_014/overbrewed/src/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | font-family: 'VT323', monospace; 4 | -webkit-font-smoothing: antialiased; 5 | -moz-osx-font-smoothing: grayscale; 6 | width: 100vw; 7 | height: 100vh; 8 | } 9 | 10 | #root { 11 | width: 100%; 12 | height: 100%; 13 | } 14 | 15 | * { 16 | box-sizing: border-box; 17 | margin: 0; 18 | } 19 | 20 | code { 21 | font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', 22 | monospace; 23 | } 24 | -------------------------------------------------------------------------------- /episode_014/overbrewed/src/reportWebVitals.js: -------------------------------------------------------------------------------- 1 | const reportWebVitals = onPerfEntry => { 2 | if (onPerfEntry && onPerfEntry instanceof Function) { 3 | import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => { 4 | getCLS(onPerfEntry); 5 | getFID(onPerfEntry); 6 | getFCP(onPerfEntry); 7 | getLCP(onPerfEntry); 8 | getTTFB(onPerfEntry); 9 | }); 10 | } 11 | }; 12 | 13 | export default reportWebVitals; 14 | -------------------------------------------------------------------------------- /episode_014/overbrewed/src/setupTests.js: -------------------------------------------------------------------------------- 1 | // jest-dom adds custom jest matchers for asserting on DOM nodes. 2 | // allows you to do things like: 3 | // expect(element).toHaveTextContent(/react/i) 4 | // learn more: https://github.com/testing-library/jest-dom 5 | import '@testing-library/jest-dom'; 6 | -------------------------------------------------------------------------------- /episode_015/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_015/.DS_Store -------------------------------------------------------------------------------- /episode_015/netflix-heist/air-balloon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_015/netflix-heist/air-balloon.png -------------------------------------------------------------------------------- /episode_015/netflix-heist/cloud.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_015/netflix-heist/cloud.webp -------------------------------------------------------------------------------- /episode_016/README.md: -------------------------------------------------------------------------------- 1 | # Ideas 2 | 3 | * Frogger style game 4 | * As a frog, you must get across all the dragons to get your pants. 5 | * There is a 3d norway flag on the screen. 6 | 7 | - [x] Acid_Spark - Dragon 8 | - [x] Limeoats - ribbit 9 | - [x] Roennev - Norway 10 | - [x] Purelol6 - 3D 11 | - [x] SoundOfGaming - pants -------------------------------------------------------------------------------- /episode_016/images/Jte3nk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_016/images/Jte3nk.gif -------------------------------------------------------------------------------- /episode_016/images/YzXcbf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_016/images/YzXcbf.gif -------------------------------------------------------------------------------- /episode_016/images/clothes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_016/images/clothes.gif -------------------------------------------------------------------------------- /episode_016/images/dragon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_016/images/dragon.gif -------------------------------------------------------------------------------- /episode_016/images/frog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_016/images/frog.png -------------------------------------------------------------------------------- /episode_016/images/norwayflag.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_016/images/norwayflag.gif -------------------------------------------------------------------------------- /episode_016/images/p5DoH+.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_016/images/p5DoH+.gif -------------------------------------------------------------------------------- /episode_016/images/pants.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_016/images/pants.png -------------------------------------------------------------------------------- /episode_017/README.md: -------------------------------------------------------------------------------- 1 | 2 | # Ideas: 3 | 4 | * Recipe Book - popcorn recipes... 5 | * Web Scrape some Popcorn Recipes 6 | * At least 20 recipes... 7 | * Page flip animation 8 | * Display a recipe, flip page to next recipe 9 | 10 | # Suggestions: 11 | 12 | [x] - Limeoats - scarecrow 13 | [x] - SoundOfGaming - grease 14 | [x] - LexiRae7712 - popcorn 15 | [x] - GKBeat - water 16 | [x] - American2050 - yerba mate 17 | 18 | # References: 19 | 20 | * Background image from: https://www.pexels.com/photo/brown-wooden-board-164005/ 21 | * Recipes from: https://www.popcorn.org/Recipes/All-Recipes -------------------------------------------------------------------------------- /episode_017/recipe-scraper/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "recipe-scraper", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "keywords": [], 10 | "author": "CJ R. (https://w3cj.sh/)", 11 | "license": "MIT", 12 | "dependencies": { 13 | "axios": "^0.26.0", 14 | "cheerio": "^1.0.0-rc.10" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /episode_019/styles.css: -------------------------------------------------------------------------------- 1 | body { 2 | font-family: sans-serif; 3 | font-size: 2rem; 4 | background: black; 5 | color: white; 6 | } 7 | 8 | .game-area { 9 | display: flex; 10 | justify-content: center; 11 | align-items: center; 12 | flex-direction: column; 13 | } 14 | 15 | .prompt-wrapper { 16 | max-width: 600px; 17 | } 18 | 19 | .todo { 20 | font-size: 0.5rem; 21 | } 22 | 23 | #prompt { 24 | font-weight: bold; 25 | } 26 | 27 | #definition { 28 | font-style: italic; 29 | } -------------------------------------------------------------------------------- /episode_020/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_020/.DS_Store -------------------------------------------------------------------------------- /episode_020/CNAME: -------------------------------------------------------------------------------- 1 | morgans-space-odyssey.surge.sh -------------------------------------------------------------------------------- /episode_020/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Morgan's Space Odyssey 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /episode_020/morgan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_020/morgan.png -------------------------------------------------------------------------------- /episode_020/quotes/change.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_020/quotes/change.wav -------------------------------------------------------------------------------- /episode_020/quotes/dream.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_020/quotes/dream.wav -------------------------------------------------------------------------------- /episode_020/quotes/hard-to-fail.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_020/quotes/hard-to-fail.wav -------------------------------------------------------------------------------- /episode_020/quotes/never.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_020/quotes/never.wav -------------------------------------------------------------------------------- /episode_020/quotes/normalize.sh: -------------------------------------------------------------------------------- 1 | for file in *.wav; do 2 | ffmpeg -i $file -af aecho=1.0:0.7:50:0.5 -y reverb/$file 3 | done -------------------------------------------------------------------------------- /episode_020/quotes/ownlife.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_020/quotes/ownlife.wav -------------------------------------------------------------------------------- /episode_020/quotes/reach-a-port.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_020/quotes/reach-a-port.wav -------------------------------------------------------------------------------- /episode_020/quotes/success-dictionary.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_020/quotes/success-dictionary.wav -------------------------------------------------------------------------------- /episode_020/quotes/success.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_020/quotes/success.wav -------------------------------------------------------------------------------- /episode_020/quotes/sunshine.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_020/quotes/sunshine.wav -------------------------------------------------------------------------------- /episode_020/space.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_020/space.wav -------------------------------------------------------------------------------- /episode_021/README.md: -------------------------------------------------------------------------------- 1 | # Episode 21 2 | 3 | * Advent Calendar with 25 doors 4 | * Behind every door is a bird with arms (from the reddit API) 5 | * The current price of bitcoin is the top of the page 6 | 7 | [ ] - Acid_Spark - Gift 8 | [ ] - kulfon105 - gym 9 | [ ] - clickyypoo - birds 10 | [ ] - American2050 - Christmas 11 | [ ] - razorson1313 - Bitcoin -------------------------------------------------------------------------------- /episode_021/door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_021/door.png -------------------------------------------------------------------------------- /episode_021/house-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_021/house-bg.png -------------------------------------------------------------------------------- /episode_022/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/.DS_Store -------------------------------------------------------------------------------- /episode_022/sprites/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/.DS_Store -------------------------------------------------------------------------------- /episode_022/sprites/LPC_house_interior.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/LPC_house_interior.zip -------------------------------------------------------------------------------- /episode_022/sprites/Modern_Interiors_Free_v2.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/Modern_Interiors_Free_v2.2.zip -------------------------------------------------------------------------------- /episode_022/sprites/house/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/.DS_Store -------------------------------------------------------------------------------- /episode_022/sprites/house/interior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/interior.png -------------------------------------------------------------------------------- /episode_022/sprites/house/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/preview.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/.DS_Store -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile000.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile001.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile002.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile003.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile004.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile005.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile006.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile007.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile008.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile009.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile010.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile011.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile012.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile013.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile014.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile015.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile016.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile017.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile018.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile019.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile020.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile021.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile022.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile023.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile024.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile025.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile026.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile027.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile028.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile029.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile030.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile030.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile031.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile031.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile032.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile032.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile033.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile033.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile034.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile034.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile035.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile035.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile036.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile036.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile037.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile037.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile038.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile038.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile039.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile039.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile040.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile041.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile041.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile042.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile042.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile043.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile043.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile044.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile044.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile045.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile045.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile046.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile046.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile047.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile047.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile048.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile049.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile049.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile050.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile050.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile051.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile051.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile052.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile052.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile053.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile053.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile054.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile054.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile055.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile055.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile056.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile056.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile057.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile057.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile058.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile058.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile059.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile059.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile060.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile061.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile061.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile062.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile062.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile063.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile063.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile064.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile064.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile065.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile065.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile066.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile066.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile067.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile067.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile068.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile068.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile069.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile069.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile070.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile070.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile071.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile071.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile072.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile072.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile073.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile073.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile074.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile074.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile075.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile075.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile076.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile076.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile077.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile077.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile078.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile078.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile079.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile079.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile080.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile081.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile081.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile082.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile082.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile083.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile083.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile084.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile084.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile085.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile085.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile086.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile086.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile087.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile087.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile088.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile088.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile089.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile089.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile090.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile090.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile091.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile091.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile092.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile092.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile093.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile093.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile094.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile094.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile095.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile095.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile096.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile096.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile097.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile097.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile098.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile098.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile099.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile099.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile100.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile101.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile102.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile103.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile103.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile104.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile105.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile105.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile106.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile106.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile107.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile107.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile108.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile109.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile109.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile110.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile111.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile112.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile112.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile113.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile113.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile114.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile115.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile115.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile116.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile116.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile117.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile117.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile118.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile118.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile119.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile119.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile120.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile121.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile121.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile122.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile122.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile123.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile123.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile124.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile124.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile125.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile126.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile126.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile127.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile127.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile128.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile129.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile129.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile130.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile130.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile131.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile131.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile132.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile132.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile133.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile133.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile134.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile134.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile135.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile135.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile136.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile136.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile137.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile137.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile138.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile138.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile139.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile139.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile140.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile141.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile141.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile142.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile142.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile143.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile143.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile144.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile145.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile145.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile146.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile146.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile147.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile147.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile148.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile148.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile149.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile149.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile150.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile151.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile151.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile152.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile153.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile153.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile154.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile154.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile155.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile155.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile156.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile156.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile157.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile157.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile158.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile158.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile159.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile159.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile160.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile160.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile161.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile161.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile162.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile162.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile163.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile163.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile164.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile164.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile165.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile165.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile166.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile166.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile167.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile168.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile168.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile169.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile169.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile170.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile170.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile171.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile171.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile172.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile172.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile173.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile173.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile174.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile174.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile175.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile175.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile176.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile176.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile177.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile177.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile178.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile178.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile179.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile179.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile180.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile181.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile181.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile182.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile182.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile183.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile183.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile184.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile184.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile185.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile185.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile186.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile186.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile187.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile187.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile188.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile188.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile189.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile189.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile190.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile190.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile191.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile191.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile192.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile193.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile193.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile194.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile194.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile195.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile195.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile196.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile197.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile197.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile198.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile198.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile199.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile199.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile200.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile201.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile201.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile202.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile202.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile203.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile203.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile204.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile204.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile205.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile205.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile206.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile206.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile207.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile207.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile208.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile208.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile209.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile209.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile210.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile210.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile211.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile211.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile212.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile212.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile213.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile213.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile214.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile214.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile215.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile215.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile216.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile216.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile217.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile217.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile218.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile218.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile219.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile219.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile220.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile220.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile221.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile221.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile222.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile222.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile223.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile223.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile224.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile224.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile225.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile225.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile226.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile226.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile227.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile227.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile228.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile228.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile229.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile229.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile230.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile230.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile231.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile231.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile232.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile232.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile233.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile233.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile234.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile234.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile235.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile235.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile236.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile236.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile237.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile237.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile238.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile238.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile239.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile239.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile240.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile241.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile241.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile242.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile242.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile243.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile243.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile244.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile244.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile245.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile245.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile246.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile246.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile247.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile247.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile248.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile248.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile249.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile249.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile250.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile251.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile251.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile252.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile252.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile253.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile253.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile254.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile254.png -------------------------------------------------------------------------------- /episode_022/sprites/house/tiles/tile255.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/house/tiles/tile255.png -------------------------------------------------------------------------------- /episode_022/sprites/map1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/map1.png -------------------------------------------------------------------------------- /episode_022/sprites/map2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/map2.png -------------------------------------------------------------------------------- /episode_022/sprites/overworld_tileset_grass.ase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/overworld_tileset_grass.ase -------------------------------------------------------------------------------- /episode_022/sprites/overworld_tileset_grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/overworld_tileset_grass.png -------------------------------------------------------------------------------- /episode_022/sprites/palette.ase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/palette.ase -------------------------------------------------------------------------------- /episode_022/sprites/pikachu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/pikachu.png -------------------------------------------------------------------------------- /episode_022/sprites/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/preview.png -------------------------------------------------------------------------------- /episode_022/sprites/tile000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile000.png -------------------------------------------------------------------------------- /episode_022/sprites/tile001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile001.png -------------------------------------------------------------------------------- /episode_022/sprites/tile002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile002.png -------------------------------------------------------------------------------- /episode_022/sprites/tile003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile003.png -------------------------------------------------------------------------------- /episode_022/sprites/tile004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile004.png -------------------------------------------------------------------------------- /episode_022/sprites/tile005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile005.png -------------------------------------------------------------------------------- /episode_022/sprites/tile006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile006.png -------------------------------------------------------------------------------- /episode_022/sprites/tile007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile007.png -------------------------------------------------------------------------------- /episode_022/sprites/tile008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile008.png -------------------------------------------------------------------------------- /episode_022/sprites/tile009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile009.png -------------------------------------------------------------------------------- /episode_022/sprites/tile010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile010.png -------------------------------------------------------------------------------- /episode_022/sprites/tile011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile011.png -------------------------------------------------------------------------------- /episode_022/sprites/tile012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile012.png -------------------------------------------------------------------------------- /episode_022/sprites/tile013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile013.png -------------------------------------------------------------------------------- /episode_022/sprites/tile014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile014.png -------------------------------------------------------------------------------- /episode_022/sprites/tile015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile015.png -------------------------------------------------------------------------------- /episode_022/sprites/tile016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile016.png -------------------------------------------------------------------------------- /episode_022/sprites/tile017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile017.png -------------------------------------------------------------------------------- /episode_022/sprites/tile018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile018.png -------------------------------------------------------------------------------- /episode_022/sprites/tile019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile019.png -------------------------------------------------------------------------------- /episode_022/sprites/tile020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile020.png -------------------------------------------------------------------------------- /episode_022/sprites/tile021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile021.png -------------------------------------------------------------------------------- /episode_022/sprites/tile022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile022.png -------------------------------------------------------------------------------- /episode_022/sprites/tile023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile023.png -------------------------------------------------------------------------------- /episode_022/sprites/tile024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile024.png -------------------------------------------------------------------------------- /episode_022/sprites/tile025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile025.png -------------------------------------------------------------------------------- /episode_022/sprites/tile026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile026.png -------------------------------------------------------------------------------- /episode_022/sprites/tile027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile027.png -------------------------------------------------------------------------------- /episode_022/sprites/tile028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile028.png -------------------------------------------------------------------------------- /episode_022/sprites/tile029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile029.png -------------------------------------------------------------------------------- /episode_022/sprites/tile030.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile030.png -------------------------------------------------------------------------------- /episode_022/sprites/tile031.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile031.png -------------------------------------------------------------------------------- /episode_022/sprites/tile032.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile032.png -------------------------------------------------------------------------------- /episode_022/sprites/tile033.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile033.png -------------------------------------------------------------------------------- /episode_022/sprites/tile034.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile034.png -------------------------------------------------------------------------------- /episode_022/sprites/tile035.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile035.png -------------------------------------------------------------------------------- /episode_022/sprites/tile036.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile036.png -------------------------------------------------------------------------------- /episode_022/sprites/tile037.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile037.png -------------------------------------------------------------------------------- /episode_022/sprites/tile038.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile038.png -------------------------------------------------------------------------------- /episode_022/sprites/tile039.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile039.png -------------------------------------------------------------------------------- /episode_022/sprites/tile040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile040.png -------------------------------------------------------------------------------- /episode_022/sprites/tile041.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile041.png -------------------------------------------------------------------------------- /episode_022/sprites/tile042.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile042.png -------------------------------------------------------------------------------- /episode_022/sprites/tile043.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile043.png -------------------------------------------------------------------------------- /episode_022/sprites/tile044.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile044.png -------------------------------------------------------------------------------- /episode_022/sprites/tile045.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile045.png -------------------------------------------------------------------------------- /episode_022/sprites/tile046.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile046.png -------------------------------------------------------------------------------- /episode_022/sprites/tile047.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile047.png -------------------------------------------------------------------------------- /episode_022/sprites/tile048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile048.png -------------------------------------------------------------------------------- /episode_022/sprites/tile049.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile049.png -------------------------------------------------------------------------------- /episode_022/sprites/tile050.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile050.png -------------------------------------------------------------------------------- /episode_022/sprites/tile051.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile051.png -------------------------------------------------------------------------------- /episode_022/sprites/tile052.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile052.png -------------------------------------------------------------------------------- /episode_022/sprites/tile053.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile053.png -------------------------------------------------------------------------------- /episode_022/sprites/tile054.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile054.png -------------------------------------------------------------------------------- /episode_022/sprites/tile055.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile055.png -------------------------------------------------------------------------------- /episode_022/sprites/tile056.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile056.png -------------------------------------------------------------------------------- /episode_022/sprites/tile057.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile057.png -------------------------------------------------------------------------------- /episode_022/sprites/tile058.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile058.png -------------------------------------------------------------------------------- /episode_022/sprites/tile059.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile059.png -------------------------------------------------------------------------------- /episode_022/sprites/tile060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile060.png -------------------------------------------------------------------------------- /episode_022/sprites/tile061.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile061.png -------------------------------------------------------------------------------- /episode_022/sprites/tile062.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile062.png -------------------------------------------------------------------------------- /episode_022/sprites/tile063.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile063.png -------------------------------------------------------------------------------- /episode_022/sprites/tile064.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile064.png -------------------------------------------------------------------------------- /episode_022/sprites/tile065.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile065.png -------------------------------------------------------------------------------- /episode_022/sprites/tile066.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile066.png -------------------------------------------------------------------------------- /episode_022/sprites/tile067.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile067.png -------------------------------------------------------------------------------- /episode_022/sprites/tile068.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile068.png -------------------------------------------------------------------------------- /episode_022/sprites/tile069.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile069.png -------------------------------------------------------------------------------- /episode_022/sprites/tile070.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile070.png -------------------------------------------------------------------------------- /episode_022/sprites/tile071.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile071.png -------------------------------------------------------------------------------- /episode_022/sprites/tile072.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile072.png -------------------------------------------------------------------------------- /episode_022/sprites/tile073.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile073.png -------------------------------------------------------------------------------- /episode_022/sprites/tile074.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile074.png -------------------------------------------------------------------------------- /episode_022/sprites/tile075.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile075.png -------------------------------------------------------------------------------- /episode_022/sprites/tile076.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile076.png -------------------------------------------------------------------------------- /episode_022/sprites/tile077.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile077.png -------------------------------------------------------------------------------- /episode_022/sprites/tile078.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile078.png -------------------------------------------------------------------------------- /episode_022/sprites/tile079.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile079.png -------------------------------------------------------------------------------- /episode_022/sprites/tile080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile080.png -------------------------------------------------------------------------------- /episode_022/sprites/tile081.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile081.png -------------------------------------------------------------------------------- /episode_022/sprites/tile082.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile082.png -------------------------------------------------------------------------------- /episode_022/sprites/tile083.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile083.png -------------------------------------------------------------------------------- /episode_022/sprites/tile084.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile084.png -------------------------------------------------------------------------------- /episode_022/sprites/tile085.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile085.png -------------------------------------------------------------------------------- /episode_022/sprites/tile086.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile086.png -------------------------------------------------------------------------------- /episode_022/sprites/tile087.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile087.png -------------------------------------------------------------------------------- /episode_022/sprites/tile088.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile088.png -------------------------------------------------------------------------------- /episode_022/sprites/tile089.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile089.png -------------------------------------------------------------------------------- /episode_022/sprites/tile090.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile090.png -------------------------------------------------------------------------------- /episode_022/sprites/tile091.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile091.png -------------------------------------------------------------------------------- /episode_022/sprites/tile092.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile092.png -------------------------------------------------------------------------------- /episode_022/sprites/tile093.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile093.png -------------------------------------------------------------------------------- /episode_022/sprites/tile094.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile094.png -------------------------------------------------------------------------------- /episode_022/sprites/tile095.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile095.png -------------------------------------------------------------------------------- /episode_022/sprites/tile096.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile096.png -------------------------------------------------------------------------------- /episode_022/sprites/tile097.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile097.png -------------------------------------------------------------------------------- /episode_022/sprites/tile098.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile098.png -------------------------------------------------------------------------------- /episode_022/sprites/tile099.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile099.png -------------------------------------------------------------------------------- /episode_022/sprites/tile100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile100.png -------------------------------------------------------------------------------- /episode_022/sprites/tile101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile101.png -------------------------------------------------------------------------------- /episode_022/sprites/tile102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile102.png -------------------------------------------------------------------------------- /episode_022/sprites/tile103.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile103.png -------------------------------------------------------------------------------- /episode_022/sprites/tile104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile104.png -------------------------------------------------------------------------------- /episode_022/sprites/tile105.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile105.png -------------------------------------------------------------------------------- /episode_022/sprites/tile106.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile106.png -------------------------------------------------------------------------------- /episode_022/sprites/tile107.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile107.png -------------------------------------------------------------------------------- /episode_022/sprites/tile108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile108.png -------------------------------------------------------------------------------- /episode_022/sprites/tile109.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile109.png -------------------------------------------------------------------------------- /episode_022/sprites/tile110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile110.png -------------------------------------------------------------------------------- /episode_022/sprites/tile111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile111.png -------------------------------------------------------------------------------- /episode_022/sprites/tile112.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile112.png -------------------------------------------------------------------------------- /episode_022/sprites/tile113.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile113.png -------------------------------------------------------------------------------- /episode_022/sprites/tile114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile114.png -------------------------------------------------------------------------------- /episode_022/sprites/tile115.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile115.png -------------------------------------------------------------------------------- /episode_022/sprites/tile116.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile116.png -------------------------------------------------------------------------------- /episode_022/sprites/tile117.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile117.png -------------------------------------------------------------------------------- /episode_022/sprites/tile118.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile118.png -------------------------------------------------------------------------------- /episode_022/sprites/tile119.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile119.png -------------------------------------------------------------------------------- /episode_022/sprites/tile120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile120.png -------------------------------------------------------------------------------- /episode_022/sprites/tile121.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile121.png -------------------------------------------------------------------------------- /episode_022/sprites/tile122.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile122.png -------------------------------------------------------------------------------- /episode_022/sprites/tile123.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile123.png -------------------------------------------------------------------------------- /episode_022/sprites/tile124.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile124.png -------------------------------------------------------------------------------- /episode_022/sprites/tile125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile125.png -------------------------------------------------------------------------------- /episode_022/sprites/tile126.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile126.png -------------------------------------------------------------------------------- /episode_022/sprites/tile127.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile127.png -------------------------------------------------------------------------------- /episode_022/sprites/tile128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile128.png -------------------------------------------------------------------------------- /episode_022/sprites/tile129.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile129.png -------------------------------------------------------------------------------- /episode_022/sprites/tile130.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile130.png -------------------------------------------------------------------------------- /episode_022/sprites/tile131.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile131.png -------------------------------------------------------------------------------- /episode_022/sprites/tile132.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile132.png -------------------------------------------------------------------------------- /episode_022/sprites/tile133.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile133.png -------------------------------------------------------------------------------- /episode_022/sprites/tile134.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile134.png -------------------------------------------------------------------------------- /episode_022/sprites/tile135.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile135.png -------------------------------------------------------------------------------- /episode_022/sprites/tile136.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile136.png -------------------------------------------------------------------------------- /episode_022/sprites/tile137.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile137.png -------------------------------------------------------------------------------- /episode_022/sprites/tile138.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile138.png -------------------------------------------------------------------------------- /episode_022/sprites/tile139.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile139.png -------------------------------------------------------------------------------- /episode_022/sprites/tile140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile140.png -------------------------------------------------------------------------------- /episode_022/sprites/tile141.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile141.png -------------------------------------------------------------------------------- /episode_022/sprites/tile142.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile142.png -------------------------------------------------------------------------------- /episode_022/sprites/tile143.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile143.png -------------------------------------------------------------------------------- /episode_022/sprites/tile144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile144.png -------------------------------------------------------------------------------- /episode_022/sprites/tile145.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile145.png -------------------------------------------------------------------------------- /episode_022/sprites/tile146.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile146.png -------------------------------------------------------------------------------- /episode_022/sprites/tile147.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile147.png -------------------------------------------------------------------------------- /episode_022/sprites/tile148.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile148.png -------------------------------------------------------------------------------- /episode_022/sprites/tile149.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile149.png -------------------------------------------------------------------------------- /episode_022/sprites/tile150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile150.png -------------------------------------------------------------------------------- /episode_022/sprites/tile151.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile151.png -------------------------------------------------------------------------------- /episode_022/sprites/tile152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile152.png -------------------------------------------------------------------------------- /episode_022/sprites/tile153.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile153.png -------------------------------------------------------------------------------- /episode_022/sprites/tile154.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile154.png -------------------------------------------------------------------------------- /episode_022/sprites/tile155.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile155.png -------------------------------------------------------------------------------- /episode_022/sprites/tile156.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile156.png -------------------------------------------------------------------------------- /episode_022/sprites/tile157.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile157.png -------------------------------------------------------------------------------- /episode_022/sprites/tile158.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile158.png -------------------------------------------------------------------------------- /episode_022/sprites/tile159.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile159.png -------------------------------------------------------------------------------- /episode_022/sprites/tile160.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile160.png -------------------------------------------------------------------------------- /episode_022/sprites/tile161.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile161.png -------------------------------------------------------------------------------- /episode_022/sprites/tile162.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile162.png -------------------------------------------------------------------------------- /episode_022/sprites/tile163.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile163.png -------------------------------------------------------------------------------- /episode_022/sprites/tile164.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile164.png -------------------------------------------------------------------------------- /episode_022/sprites/tile165.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile165.png -------------------------------------------------------------------------------- /episode_022/sprites/tile166.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile166.png -------------------------------------------------------------------------------- /episode_022/sprites/tile167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile167.png -------------------------------------------------------------------------------- /episode_022/sprites/tile168.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile168.png -------------------------------------------------------------------------------- /episode_022/sprites/tile169.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile169.png -------------------------------------------------------------------------------- /episode_022/sprites/tile170.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile170.png -------------------------------------------------------------------------------- /episode_022/sprites/tile171.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile171.png -------------------------------------------------------------------------------- /episode_022/sprites/tile172.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile172.png -------------------------------------------------------------------------------- /episode_022/sprites/tile173.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile173.png -------------------------------------------------------------------------------- /episode_022/sprites/tile174.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile174.png -------------------------------------------------------------------------------- /episode_022/sprites/tile175.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile175.png -------------------------------------------------------------------------------- /episode_022/sprites/tile176.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile176.png -------------------------------------------------------------------------------- /episode_022/sprites/tile177.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile177.png -------------------------------------------------------------------------------- /episode_022/sprites/tile178.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile178.png -------------------------------------------------------------------------------- /episode_022/sprites/tile179.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile179.png -------------------------------------------------------------------------------- /episode_022/sprites/tile180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile180.png -------------------------------------------------------------------------------- /episode_022/sprites/tile181.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile181.png -------------------------------------------------------------------------------- /episode_022/sprites/tile182.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile182.png -------------------------------------------------------------------------------- /episode_022/sprites/tile183.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile183.png -------------------------------------------------------------------------------- /episode_022/sprites/tile184.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile184.png -------------------------------------------------------------------------------- /episode_022/sprites/tile185.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile185.png -------------------------------------------------------------------------------- /episode_022/sprites/tile186.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile186.png -------------------------------------------------------------------------------- /episode_022/sprites/tile187.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile187.png -------------------------------------------------------------------------------- /episode_022/sprites/tile188.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile188.png -------------------------------------------------------------------------------- /episode_022/sprites/tile189.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile189.png -------------------------------------------------------------------------------- /episode_022/sprites/tile190.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile190.png -------------------------------------------------------------------------------- /episode_022/sprites/tile191.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile191.png -------------------------------------------------------------------------------- /episode_022/sprites/tile192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile192.png -------------------------------------------------------------------------------- /episode_022/sprites/tile193.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile193.png -------------------------------------------------------------------------------- /episode_022/sprites/tile194.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile194.png -------------------------------------------------------------------------------- /episode_022/sprites/tile195.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile195.png -------------------------------------------------------------------------------- /episode_022/sprites/tile196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile196.png -------------------------------------------------------------------------------- /episode_022/sprites/tile197.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile197.png -------------------------------------------------------------------------------- /episode_022/sprites/tile198.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile198.png -------------------------------------------------------------------------------- /episode_022/sprites/tile199.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile199.png -------------------------------------------------------------------------------- /episode_022/sprites/tile200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile200.png -------------------------------------------------------------------------------- /episode_022/sprites/tile201.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile201.png -------------------------------------------------------------------------------- /episode_022/sprites/tile202.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile202.png -------------------------------------------------------------------------------- /episode_022/sprites/tile203.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile203.png -------------------------------------------------------------------------------- /episode_022/sprites/tile204.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile204.png -------------------------------------------------------------------------------- /episode_022/sprites/tile205.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile205.png -------------------------------------------------------------------------------- /episode_022/sprites/tile206.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile206.png -------------------------------------------------------------------------------- /episode_022/sprites/tile207.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile207.png -------------------------------------------------------------------------------- /episode_022/sprites/tile208.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile208.png -------------------------------------------------------------------------------- /episode_022/sprites/tile209.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile209.png -------------------------------------------------------------------------------- /episode_022/sprites/tile210.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile210.png -------------------------------------------------------------------------------- /episode_022/sprites/tile211.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile211.png -------------------------------------------------------------------------------- /episode_022/sprites/tile212.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile212.png -------------------------------------------------------------------------------- /episode_022/sprites/tile213.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile213.png -------------------------------------------------------------------------------- /episode_022/sprites/tile214.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile214.png -------------------------------------------------------------------------------- /episode_022/sprites/tile215.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile215.png -------------------------------------------------------------------------------- /episode_022/sprites/tile216.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile216.png -------------------------------------------------------------------------------- /episode_022/sprites/tile217.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile217.png -------------------------------------------------------------------------------- /episode_022/sprites/tile218.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile218.png -------------------------------------------------------------------------------- /episode_022/sprites/tile219.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile219.png -------------------------------------------------------------------------------- /episode_022/sprites/tile220.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile220.png -------------------------------------------------------------------------------- /episode_022/sprites/tile221.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile221.png -------------------------------------------------------------------------------- /episode_022/sprites/tile222.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile222.png -------------------------------------------------------------------------------- /episode_022/sprites/tile223.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile223.png -------------------------------------------------------------------------------- /episode_022/sprites/tile224.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile224.png -------------------------------------------------------------------------------- /episode_022/sprites/tile225.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile225.png -------------------------------------------------------------------------------- /episode_022/sprites/tile226.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile226.png -------------------------------------------------------------------------------- /episode_022/sprites/tile227.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile227.png -------------------------------------------------------------------------------- /episode_022/sprites/tile228.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile228.png -------------------------------------------------------------------------------- /episode_022/sprites/tile229.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile229.png -------------------------------------------------------------------------------- /episode_022/sprites/tile230.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile230.png -------------------------------------------------------------------------------- /episode_022/sprites/tile231.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile231.png -------------------------------------------------------------------------------- /episode_022/sprites/tile232.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile232.png -------------------------------------------------------------------------------- /episode_022/sprites/tile233.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile233.png -------------------------------------------------------------------------------- /episode_022/sprites/tile234.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile234.png -------------------------------------------------------------------------------- /episode_022/sprites/tile235.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile235.png -------------------------------------------------------------------------------- /episode_022/sprites/tile236.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile236.png -------------------------------------------------------------------------------- /episode_022/sprites/tile237.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile237.png -------------------------------------------------------------------------------- /episode_022/sprites/tile238.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile238.png -------------------------------------------------------------------------------- /episode_022/sprites/tile239.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile239.png -------------------------------------------------------------------------------- /episode_022/sprites/tile240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile240.png -------------------------------------------------------------------------------- /episode_022/sprites/tile241.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile241.png -------------------------------------------------------------------------------- /episode_022/sprites/tile242.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile242.png -------------------------------------------------------------------------------- /episode_022/sprites/tile243.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile243.png -------------------------------------------------------------------------------- /episode_022/sprites/tile244.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile244.png -------------------------------------------------------------------------------- /episode_022/sprites/tile245.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile245.png -------------------------------------------------------------------------------- /episode_022/sprites/tile246.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile246.png -------------------------------------------------------------------------------- /episode_022/sprites/tile247.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile247.png -------------------------------------------------------------------------------- /episode_022/sprites/tile248.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile248.png -------------------------------------------------------------------------------- /episode_022/sprites/tile249.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile249.png -------------------------------------------------------------------------------- /episode_022/sprites/tile250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile250.png -------------------------------------------------------------------------------- /episode_022/sprites/tile251.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingGarden/coding-improv/235478dbe4b890d5b747b43d8f115b99b85e4fd4/episode_022/sprites/tile251.png -------------------------------------------------------------------------------- /reward-listener/.env.sample: -------------------------------------------------------------------------------- 1 | CHANNEL_ID=your-channel-id-here 2 | TWITCH_TOKEN=your-token-here 3 | REWARD_ID=reward-id-here -------------------------------------------------------------------------------- /reward-listener/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "eslint.enable": true 3 | } -------------------------------------------------------------------------------- /reward-listener/README.md: -------------------------------------------------------------------------------- 1 | # Reward Listener 2 | 3 | A simple command line tool that listens for twitch reward redemptions and logs them to the console. 4 | 5 | ## Setup 6 | 7 | Copy / Update the `.env` file accordingly. 8 | 9 | ```sh 10 | cp .env.sample .env 11 | ``` 12 | -------------------------------------------------------------------------------- /reward-listener/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "reward-listener", 3 | "version": "1.0.0", 4 | "description": "A simple command line tool that listens for twitch reward redemptions and logs them to the console.", 5 | "main": "src/index.js", 6 | "scripts": { 7 | "start": "node src/index.js" 8 | }, 9 | "keywords": [], 10 | "author": "CJ R. (https://w3cj.sh)", 11 | "license": "MIT", 12 | "dependencies": { 13 | "dotenv": "^8.2.0", 14 | "twitchps": "^1.5.4" 15 | } 16 | } 17 | --------------------------------------------------------------------------------