├── .gitignore ├── LICENSE ├── README.md ├── assets ├── calico 1200 x 628.png ├── calico 1500 x 500.png └── calico 630 x 500.png ├── documentation ├── creating patches.md ├── events.md ├── getting started.md ├── ink esoterics.md ├── ink guide.md ├── ink symbols.md ├── patches.md └── tags.md ├── engine ├── README.md ├── calico.js ├── ink.js └── patches │ ├── audioplayer.js │ ├── autosave.js │ ├── dragtoscroll.js │ ├── eval.js │ ├── fadeafterchoice.js │ ├── forcetagsbeforeline.js │ ├── history.js │ ├── markdowntohtml.js │ ├── memorycard.js │ ├── minwordsperline.js │ ├── parallaxframes.js │ ├── preload.js │ ├── scrollafterchoice.js │ ├── shortcuts │ └── choices.js │ ├── shorthandclasstags.js │ ├── stepback.js │ ├── storage.js │ ├── storylets.ink │ ├── storylets.js │ └── template.js ├── package.json └── templates ├── Calico [Template] ├── README.txt ├── calico.js ├── index.html ├── ink.js ├── patches │ ├── audioplayer.js │ ├── autosave.js │ ├── dragtoscroll.js │ ├── eval.js │ ├── forcetagsbeforeline.js │ ├── history.js │ ├── markdowntohtml.js │ ├── memorycard.js │ ├── minwordsperline.js │ ├── parallaxframes.js │ ├── preload.js │ ├── scrollafterchoice.js │ ├── shortcuts │ │ └── choices.js │ ├── shorthandclasstags.js │ ├── stepback.js │ ├── storage.js │ ├── storylets.ink │ ├── storylets.js │ └── template.js ├── project.js ├── story.ink └── style.css ├── README.md └── Winter [Sample project] ├── README.txt ├── calico.js ├── fonts ├── LICENSE.txt ├── OpenSans-Bold.ttf ├── OpenSans-BoldItalic.ttf ├── OpenSans-ExtraBold.ttf ├── OpenSans-ExtraBoldItalic.ttf ├── OpenSans-Italic.ttf ├── OpenSans-Light.ttf ├── OpenSans-LightItalic.ttf ├── OpenSans-Regular.ttf ├── OpenSans-SemiBold.ttf └── OpenSans-SemiBoldItalic.ttf ├── images ├── act4_winter.png ├── act4_winter2.png ├── bedroom2_bg1.png ├── bedroom2_fg1.png ├── bedroom2_fg2.png ├── bedroom2_fg3.png ├── bedroom_bg1.png ├── bedroom_bg2.png ├── bedroom_fg1.png ├── bedroom_fg2.png ├── bedroom_fg3.png ├── bedroom_fg4.png ├── bedroom_fg5.png ├── corridor_bg.png ├── corridor_fg.png ├── corridor_fg2.png ├── corridor_fg3.png ├── cover.png ├── cover_bg1.png ├── cover_bg2.png ├── cover_fg1.png ├── cover_fg2.png ├── hand4.png ├── hands.png ├── hands2.png ├── kiss_red.png ├── kiss_shadow.png ├── kiss_winter.png ├── park_bg.png ├── park_bg2.png ├── park_bg3.png ├── park_bg4.png ├── park_fg.png ├── park_fg2.png ├── park_fg2b.png ├── park_fg3.png ├── party1_bg.png ├── party1_fg.png ├── party2_bg.png ├── party2_fg.png ├── party2_fg2.png ├── party3_bg.png ├── party3_fg1.png ├── party3_fg2.png ├── party3_fg3.png ├── party4_bg.png ├── party4_fg2.png ├── party4_fg3.png ├── party4_fg3_shadow.png ├── phone_fg.png ├── winter16.ico ├── winter256.ico ├── winter32.ico ├── winter48.ico ├── winterlay.png └── zine2.png ├── index.html ├── ink.js ├── music ├── act1park.mp3 ├── act1party.mp3 ├── act2.mp3 ├── act3.mp3 └── act4.mp3 ├── patches ├── audioplayer.js ├── autosave.js ├── dragtoscroll.js ├── eval.js ├── forcetagsbeforeline.js ├── history.js ├── markdowntohtml.js ├── memorycard.js ├── minwordsperline.js ├── parallaxframes.js ├── preload.js ├── scrollafterchoice.js ├── shortcuts │ └── choices.js ├── shorthandclasstags.js ├── stepback.js ├── storage.js ├── storylets.ink ├── storylets.js └── template.js ├── style.css ├── winter.ink └── winter.js /.gitignore: -------------------------------------------------------------------------------- 1 | release 2 | .DS_Store 3 | node_modules/ 4 | package-lock.json 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/README.md -------------------------------------------------------------------------------- /assets/calico 1200 x 628.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/assets/calico 1200 x 628.png -------------------------------------------------------------------------------- /assets/calico 1500 x 500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/assets/calico 1500 x 500.png -------------------------------------------------------------------------------- /assets/calico 630 x 500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/assets/calico 630 x 500.png -------------------------------------------------------------------------------- /documentation/creating patches.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/documentation/creating patches.md -------------------------------------------------------------------------------- /documentation/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/documentation/events.md -------------------------------------------------------------------------------- /documentation/getting started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/documentation/getting started.md -------------------------------------------------------------------------------- /documentation/ink esoterics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/documentation/ink esoterics.md -------------------------------------------------------------------------------- /documentation/ink guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/documentation/ink guide.md -------------------------------------------------------------------------------- /documentation/ink symbols.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/documentation/ink symbols.md -------------------------------------------------------------------------------- /documentation/patches.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/documentation/patches.md -------------------------------------------------------------------------------- /documentation/tags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/documentation/tags.md -------------------------------------------------------------------------------- /engine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/engine/README.md -------------------------------------------------------------------------------- /engine/calico.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/engine/calico.js -------------------------------------------------------------------------------- /engine/ink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/engine/ink.js -------------------------------------------------------------------------------- /engine/patches/audioplayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/engine/patches/audioplayer.js -------------------------------------------------------------------------------- /engine/patches/autosave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/engine/patches/autosave.js -------------------------------------------------------------------------------- /engine/patches/dragtoscroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/engine/patches/dragtoscroll.js -------------------------------------------------------------------------------- /engine/patches/eval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/engine/patches/eval.js -------------------------------------------------------------------------------- /engine/patches/fadeafterchoice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/engine/patches/fadeafterchoice.js -------------------------------------------------------------------------------- /engine/patches/forcetagsbeforeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/engine/patches/forcetagsbeforeline.js -------------------------------------------------------------------------------- /engine/patches/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/engine/patches/history.js -------------------------------------------------------------------------------- /engine/patches/markdowntohtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/engine/patches/markdowntohtml.js -------------------------------------------------------------------------------- /engine/patches/memorycard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/engine/patches/memorycard.js -------------------------------------------------------------------------------- /engine/patches/minwordsperline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/engine/patches/minwordsperline.js -------------------------------------------------------------------------------- /engine/patches/parallaxframes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/engine/patches/parallaxframes.js -------------------------------------------------------------------------------- /engine/patches/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/engine/patches/preload.js -------------------------------------------------------------------------------- /engine/patches/scrollafterchoice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/engine/patches/scrollafterchoice.js -------------------------------------------------------------------------------- /engine/patches/shortcuts/choices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/engine/patches/shortcuts/choices.js -------------------------------------------------------------------------------- /engine/patches/shorthandclasstags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/engine/patches/shorthandclasstags.js -------------------------------------------------------------------------------- /engine/patches/stepback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/engine/patches/stepback.js -------------------------------------------------------------------------------- /engine/patches/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/engine/patches/storage.js -------------------------------------------------------------------------------- /engine/patches/storylets.ink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/engine/patches/storylets.ink -------------------------------------------------------------------------------- /engine/patches/storylets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/engine/patches/storylets.js -------------------------------------------------------------------------------- /engine/patches/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/engine/patches/template.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/package.json -------------------------------------------------------------------------------- /templates/Calico [Template]/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Calico [Template]/README.txt -------------------------------------------------------------------------------- /templates/Calico [Template]/calico.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Calico [Template]/calico.js -------------------------------------------------------------------------------- /templates/Calico [Template]/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Calico [Template]/index.html -------------------------------------------------------------------------------- /templates/Calico [Template]/ink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Calico [Template]/ink.js -------------------------------------------------------------------------------- /templates/Calico [Template]/patches/audioplayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Calico [Template]/patches/audioplayer.js -------------------------------------------------------------------------------- /templates/Calico [Template]/patches/autosave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Calico [Template]/patches/autosave.js -------------------------------------------------------------------------------- /templates/Calico [Template]/patches/dragtoscroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Calico [Template]/patches/dragtoscroll.js -------------------------------------------------------------------------------- /templates/Calico [Template]/patches/eval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Calico [Template]/patches/eval.js -------------------------------------------------------------------------------- /templates/Calico [Template]/patches/forcetagsbeforeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Calico [Template]/patches/forcetagsbeforeline.js -------------------------------------------------------------------------------- /templates/Calico [Template]/patches/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Calico [Template]/patches/history.js -------------------------------------------------------------------------------- /templates/Calico [Template]/patches/markdowntohtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Calico [Template]/patches/markdowntohtml.js -------------------------------------------------------------------------------- /templates/Calico [Template]/patches/memorycard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Calico [Template]/patches/memorycard.js -------------------------------------------------------------------------------- /templates/Calico [Template]/patches/minwordsperline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Calico [Template]/patches/minwordsperline.js -------------------------------------------------------------------------------- /templates/Calico [Template]/patches/parallaxframes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Calico [Template]/patches/parallaxframes.js -------------------------------------------------------------------------------- /templates/Calico [Template]/patches/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Calico [Template]/patches/preload.js -------------------------------------------------------------------------------- /templates/Calico [Template]/patches/scrollafterchoice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Calico [Template]/patches/scrollafterchoice.js -------------------------------------------------------------------------------- /templates/Calico [Template]/patches/shortcuts/choices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Calico [Template]/patches/shortcuts/choices.js -------------------------------------------------------------------------------- /templates/Calico [Template]/patches/shorthandclasstags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Calico [Template]/patches/shorthandclasstags.js -------------------------------------------------------------------------------- /templates/Calico [Template]/patches/stepback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Calico [Template]/patches/stepback.js -------------------------------------------------------------------------------- /templates/Calico [Template]/patches/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Calico [Template]/patches/storage.js -------------------------------------------------------------------------------- /templates/Calico [Template]/patches/storylets.ink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Calico [Template]/patches/storylets.ink -------------------------------------------------------------------------------- /templates/Calico [Template]/patches/storylets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Calico [Template]/patches/storylets.js -------------------------------------------------------------------------------- /templates/Calico [Template]/patches/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Calico [Template]/patches/template.js -------------------------------------------------------------------------------- /templates/Calico [Template]/project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Calico [Template]/project.js -------------------------------------------------------------------------------- /templates/Calico [Template]/story.ink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Calico [Template]/story.ink -------------------------------------------------------------------------------- /templates/Calico [Template]/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Calico [Template]/style.css -------------------------------------------------------------------------------- /templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/README.md -------------------------------------------------------------------------------- /templates/Winter [Sample project]/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/README.txt -------------------------------------------------------------------------------- /templates/Winter [Sample project]/calico.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/calico.js -------------------------------------------------------------------------------- /templates/Winter [Sample project]/fonts/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/fonts/LICENSE.txt -------------------------------------------------------------------------------- /templates/Winter [Sample project]/fonts/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/fonts/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /templates/Winter [Sample project]/fonts/OpenSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/fonts/OpenSans-BoldItalic.ttf -------------------------------------------------------------------------------- /templates/Winter [Sample project]/fonts/OpenSans-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/fonts/OpenSans-ExtraBold.ttf -------------------------------------------------------------------------------- /templates/Winter [Sample project]/fonts/OpenSans-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/fonts/OpenSans-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /templates/Winter [Sample project]/fonts/OpenSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/fonts/OpenSans-Italic.ttf -------------------------------------------------------------------------------- /templates/Winter [Sample project]/fonts/OpenSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/fonts/OpenSans-Light.ttf -------------------------------------------------------------------------------- /templates/Winter [Sample project]/fonts/OpenSans-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/fonts/OpenSans-LightItalic.ttf -------------------------------------------------------------------------------- /templates/Winter [Sample project]/fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /templates/Winter [Sample project]/fonts/OpenSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/fonts/OpenSans-SemiBold.ttf -------------------------------------------------------------------------------- /templates/Winter [Sample project]/fonts/OpenSans-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/fonts/OpenSans-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/act4_winter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/act4_winter.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/act4_winter2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/act4_winter2.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/bedroom2_bg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/bedroom2_bg1.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/bedroom2_fg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/bedroom2_fg1.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/bedroom2_fg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/bedroom2_fg2.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/bedroom2_fg3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/bedroom2_fg3.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/bedroom_bg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/bedroom_bg1.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/bedroom_bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/bedroom_bg2.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/bedroom_fg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/bedroom_fg1.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/bedroom_fg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/bedroom_fg2.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/bedroom_fg3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/bedroom_fg3.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/bedroom_fg4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/bedroom_fg4.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/bedroom_fg5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/bedroom_fg5.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/corridor_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/corridor_bg.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/corridor_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/corridor_fg.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/corridor_fg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/corridor_fg2.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/corridor_fg3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/corridor_fg3.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/cover.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/cover_bg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/cover_bg1.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/cover_bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/cover_bg2.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/cover_fg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/cover_fg1.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/cover_fg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/cover_fg2.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/hand4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/hand4.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/hands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/hands.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/hands2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/hands2.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/kiss_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/kiss_red.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/kiss_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/kiss_shadow.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/kiss_winter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/kiss_winter.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/park_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/park_bg.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/park_bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/park_bg2.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/park_bg3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/park_bg3.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/park_bg4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/park_bg4.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/park_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/park_fg.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/park_fg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/park_fg2.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/park_fg2b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/park_fg2b.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/park_fg3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/park_fg3.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/party1_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/party1_bg.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/party1_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/party1_fg.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/party2_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/party2_bg.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/party2_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/party2_fg.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/party2_fg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/party2_fg2.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/party3_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/party3_bg.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/party3_fg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/party3_fg1.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/party3_fg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/party3_fg2.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/party3_fg3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/party3_fg3.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/party4_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/party4_bg.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/party4_fg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/party4_fg2.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/party4_fg3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/party4_fg3.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/party4_fg3_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/party4_fg3_shadow.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/phone_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/phone_fg.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/winter16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/winter16.ico -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/winter256.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/winter256.ico -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/winter32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/winter32.ico -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/winter48.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/winter48.ico -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/winterlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/winterlay.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/images/zine2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/images/zine2.png -------------------------------------------------------------------------------- /templates/Winter [Sample project]/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/index.html -------------------------------------------------------------------------------- /templates/Winter [Sample project]/ink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/ink.js -------------------------------------------------------------------------------- /templates/Winter [Sample project]/music/act1park.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/music/act1park.mp3 -------------------------------------------------------------------------------- /templates/Winter [Sample project]/music/act1party.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/music/act1party.mp3 -------------------------------------------------------------------------------- /templates/Winter [Sample project]/music/act2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/music/act2.mp3 -------------------------------------------------------------------------------- /templates/Winter [Sample project]/music/act3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/music/act3.mp3 -------------------------------------------------------------------------------- /templates/Winter [Sample project]/music/act4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/music/act4.mp3 -------------------------------------------------------------------------------- /templates/Winter [Sample project]/patches/audioplayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/patches/audioplayer.js -------------------------------------------------------------------------------- /templates/Winter [Sample project]/patches/autosave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/patches/autosave.js -------------------------------------------------------------------------------- /templates/Winter [Sample project]/patches/dragtoscroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/patches/dragtoscroll.js -------------------------------------------------------------------------------- /templates/Winter [Sample project]/patches/eval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/patches/eval.js -------------------------------------------------------------------------------- /templates/Winter [Sample project]/patches/forcetagsbeforeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/patches/forcetagsbeforeline.js -------------------------------------------------------------------------------- /templates/Winter [Sample project]/patches/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/patches/history.js -------------------------------------------------------------------------------- /templates/Winter [Sample project]/patches/markdowntohtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/patches/markdowntohtml.js -------------------------------------------------------------------------------- /templates/Winter [Sample project]/patches/memorycard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/patches/memorycard.js -------------------------------------------------------------------------------- /templates/Winter [Sample project]/patches/minwordsperline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/patches/minwordsperline.js -------------------------------------------------------------------------------- /templates/Winter [Sample project]/patches/parallaxframes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/patches/parallaxframes.js -------------------------------------------------------------------------------- /templates/Winter [Sample project]/patches/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/patches/preload.js -------------------------------------------------------------------------------- /templates/Winter [Sample project]/patches/scrollafterchoice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/patches/scrollafterchoice.js -------------------------------------------------------------------------------- /templates/Winter [Sample project]/patches/shortcuts/choices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/patches/shortcuts/choices.js -------------------------------------------------------------------------------- /templates/Winter [Sample project]/patches/shorthandclasstags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/patches/shorthandclasstags.js -------------------------------------------------------------------------------- /templates/Winter [Sample project]/patches/stepback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/patches/stepback.js -------------------------------------------------------------------------------- /templates/Winter [Sample project]/patches/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/patches/storage.js -------------------------------------------------------------------------------- /templates/Winter [Sample project]/patches/storylets.ink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/patches/storylets.ink -------------------------------------------------------------------------------- /templates/Winter [Sample project]/patches/storylets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/patches/storylets.js -------------------------------------------------------------------------------- /templates/Winter [Sample project]/patches/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/patches/template.js -------------------------------------------------------------------------------- /templates/Winter [Sample project]/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/style.css -------------------------------------------------------------------------------- /templates/Winter [Sample project]/winter.ink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/winter.ink -------------------------------------------------------------------------------- /templates/Winter [Sample project]/winter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotherriman/calico/HEAD/templates/Winter [Sample project]/winter.js --------------------------------------------------------------------------------