├── .gitattributes ├── Content ├── Site.min.css ├── icons │ ├── bug.png │ ├── bugoff.png │ ├── carry.png │ ├── carryoff.png │ ├── complete.png │ ├── completeoff.png │ ├── factory.png │ ├── factoryoff.png │ ├── farm.png │ ├── farmoff.png │ ├── female.png │ ├── fort.png │ ├── fortoff.png │ ├── heart.png │ ├── heartoff.png │ ├── lock.png │ ├── male.png │ ├── mine.png │ ├── mineoff.png │ ├── new.png │ ├── shiftkey (1).gif │ ├── shiftkey.gif │ ├── star.png │ ├── staroff.png │ ├── tick.png │ ├── treasure.png │ ├── treasureoff.png │ ├── zoom.png │ └── zoomoff.png ├── images │ └── Production.png └── tipped.css ├── README.md ├── Scripts ├── Game.js ├── Site.js ├── Worker.js ├── game.scramble.js ├── imagesloaded.pkgd.min.js ├── jquery-2.1.1.min.js ├── jquery.base64.min.js ├── jquery.simplemodal.1.4.4.min.js ├── knockout-3.1.0.js ├── notify.min.js ├── tabcontent.js └── tipped.js ├── index.htm └── index.html /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayseesee/Crittermound-Fork/HEAD/.gitattributes -------------------------------------------------------------------------------- /Content/Site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayseesee/Crittermound-Fork/HEAD/Content/Site.min.css -------------------------------------------------------------------------------- /Content/icons/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayseesee/Crittermound-Fork/HEAD/Content/icons/bug.png -------------------------------------------------------------------------------- /Content/icons/bugoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayseesee/Crittermound-Fork/HEAD/Content/icons/bugoff.png -------------------------------------------------------------------------------- /Content/icons/carry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayseesee/Crittermound-Fork/HEAD/Content/icons/carry.png -------------------------------------------------------------------------------- /Content/icons/carryoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayseesee/Crittermound-Fork/HEAD/Content/icons/carryoff.png -------------------------------------------------------------------------------- /Content/icons/complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayseesee/Crittermound-Fork/HEAD/Content/icons/complete.png -------------------------------------------------------------------------------- /Content/icons/completeoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayseesee/Crittermound-Fork/HEAD/Content/icons/completeoff.png -------------------------------------------------------------------------------- /Content/icons/factory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayseesee/Crittermound-Fork/HEAD/Content/icons/factory.png -------------------------------------------------------------------------------- /Content/icons/factoryoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayseesee/Crittermound-Fork/HEAD/Content/icons/factoryoff.png -------------------------------------------------------------------------------- /Content/icons/farm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayseesee/Crittermound-Fork/HEAD/Content/icons/farm.png -------------------------------------------------------------------------------- /Content/icons/farmoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayseesee/Crittermound-Fork/HEAD/Content/icons/farmoff.png -------------------------------------------------------------------------------- /Content/icons/female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayseesee/Crittermound-Fork/HEAD/Content/icons/female.png -------------------------------------------------------------------------------- /Content/icons/fort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayseesee/Crittermound-Fork/HEAD/Content/icons/fort.png -------------------------------------------------------------------------------- /Content/icons/fortoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayseesee/Crittermound-Fork/HEAD/Content/icons/fortoff.png -------------------------------------------------------------------------------- /Content/icons/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayseesee/Crittermound-Fork/HEAD/Content/icons/heart.png -------------------------------------------------------------------------------- /Content/icons/heartoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayseesee/Crittermound-Fork/HEAD/Content/icons/heartoff.png -------------------------------------------------------------------------------- /Content/icons/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayseesee/Crittermound-Fork/HEAD/Content/icons/lock.png -------------------------------------------------------------------------------- /Content/icons/male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayseesee/Crittermound-Fork/HEAD/Content/icons/male.png -------------------------------------------------------------------------------- /Content/icons/mine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayseesee/Crittermound-Fork/HEAD/Content/icons/mine.png -------------------------------------------------------------------------------- /Content/icons/mineoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayseesee/Crittermound-Fork/HEAD/Content/icons/mineoff.png -------------------------------------------------------------------------------- /Content/icons/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayseesee/Crittermound-Fork/HEAD/Content/icons/new.png -------------------------------------------------------------------------------- /Content/icons/shiftkey (1).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayseesee/Crittermound-Fork/HEAD/Content/icons/shiftkey (1).gif -------------------------------------------------------------------------------- /Content/icons/shiftkey.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayseesee/Crittermound-Fork/HEAD/Content/icons/shiftkey.gif -------------------------------------------------------------------------------- /Content/icons/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayseesee/Crittermound-Fork/HEAD/Content/icons/star.png -------------------------------------------------------------------------------- /Content/icons/staroff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayseesee/Crittermound-Fork/HEAD/Content/icons/staroff.png -------------------------------------------------------------------------------- /Content/icons/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayseesee/Crittermound-Fork/HEAD/Content/icons/tick.png -------------------------------------------------------------------------------- /Content/icons/treasure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayseesee/Crittermound-Fork/HEAD/Content/icons/treasure.png -------------------------------------------------------------------------------- /Content/icons/treasureoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayseesee/Crittermound-Fork/HEAD/Content/icons/treasureoff.png -------------------------------------------------------------------------------- /Content/icons/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayseesee/Crittermound-Fork/HEAD/Content/icons/zoom.png -------------------------------------------------------------------------------- /Content/icons/zoomoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayseesee/Crittermound-Fork/HEAD/Content/icons/zoomoff.png -------------------------------------------------------------------------------- /Content/images/Production.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayseesee/Crittermound-Fork/HEAD/Content/images/Production.png -------------------------------------------------------------------------------- /Content/tipped.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayseesee/Crittermound-Fork/HEAD/Content/tipped.css -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayseesee/Crittermound-Fork/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/Game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayseesee/Crittermound-Fork/HEAD/Scripts/Game.js -------------------------------------------------------------------------------- /Scripts/Site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayseesee/Crittermound-Fork/HEAD/Scripts/Site.js -------------------------------------------------------------------------------- /Scripts/Worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayseesee/Crittermound-Fork/HEAD/Scripts/Worker.js -------------------------------------------------------------------------------- /Scripts/game.scramble.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayseesee/Crittermound-Fork/HEAD/Scripts/game.scramble.js -------------------------------------------------------------------------------- /Scripts/imagesloaded.pkgd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayseesee/Crittermound-Fork/HEAD/Scripts/imagesloaded.pkgd.min.js -------------------------------------------------------------------------------- /Scripts/jquery-2.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayseesee/Crittermound-Fork/HEAD/Scripts/jquery-2.1.1.min.js -------------------------------------------------------------------------------- /Scripts/jquery.base64.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayseesee/Crittermound-Fork/HEAD/Scripts/jquery.base64.min.js -------------------------------------------------------------------------------- /Scripts/jquery.simplemodal.1.4.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayseesee/Crittermound-Fork/HEAD/Scripts/jquery.simplemodal.1.4.4.min.js -------------------------------------------------------------------------------- /Scripts/knockout-3.1.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayseesee/Crittermound-Fork/HEAD/Scripts/knockout-3.1.0.js -------------------------------------------------------------------------------- /Scripts/notify.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayseesee/Crittermound-Fork/HEAD/Scripts/notify.min.js -------------------------------------------------------------------------------- /Scripts/tabcontent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayseesee/Crittermound-Fork/HEAD/Scripts/tabcontent.js -------------------------------------------------------------------------------- /Scripts/tipped.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayseesee/Crittermound-Fork/HEAD/Scripts/tipped.js -------------------------------------------------------------------------------- /index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayseesee/Crittermound-Fork/HEAD/index.htm -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jayseesee/Crittermound-Fork/HEAD/index.html --------------------------------------------------------------------------------