├── .gitignore ├── LICENSE.md ├── README.md ├── cache.manifest ├── css ├── abandoned.css ├── chaotic.css ├── frigid.css ├── haven.css ├── shrouded.css ├── style.css ├── tempestuous.css └── violent.css ├── data ├── raweventspritedata.json ├── rawspritedata.json ├── sharkeventsprites.tps └── sharksprites.tps ├── favicon.ico ├── img ├── bg │ ├── bg-gate.png │ ├── bg-grotto.png │ ├── bg-homesea.png │ ├── bg-lab.png │ └── bg-recycler.png ├── events │ ├── home │ │ ├── homesea-1.png │ │ ├── homesea-10.png │ │ ├── homesea-11.png │ │ ├── homesea-12.png │ │ ├── homesea-13.png │ │ ├── homesea-14.png │ │ ├── homesea-15.png │ │ ├── homesea-16.png │ │ ├── homesea-17.png │ │ ├── homesea-18.png │ │ ├── homesea-19.png │ │ ├── homesea-2.png │ │ ├── homesea-20.png │ │ ├── homesea-21.png │ │ ├── homesea-22.png │ │ ├── homesea-23.png │ │ ├── homesea-24.png │ │ ├── homesea-25.png │ │ ├── homesea-26.png │ │ ├── homesea-27.png │ │ ├── homesea-28.png │ │ ├── homesea-29.png │ │ ├── homesea-3.png │ │ ├── homesea-30.png │ │ ├── homesea-31.png │ │ ├── homesea-32.png │ │ ├── homesea-33.png │ │ ├── homesea-34.png │ │ ├── homesea-35.png │ │ ├── homesea-36.png │ │ ├── homesea-4.png │ │ ├── homesea-5.png │ │ ├── homesea-6.png │ │ ├── homesea-7.png │ │ ├── homesea-8.png │ │ ├── homesea-9.png │ │ ├── homesea-missing.png │ │ ├── png2F36.tmp │ │ └── pngDF49.tmp │ └── misc │ │ ├── scene-gate-closed.png │ │ ├── scene-gate-one-slot.png │ │ ├── scene-gate-open.png │ │ ├── scene-grotto.png │ │ ├── scene-lab-done.png │ │ ├── scene-lab.png │ │ ├── scene-recycler.png │ │ └── scene-reflection.png ├── fanarts │ ├── CookieShark.png │ ├── LaserRay.png │ └── SharkScience.png ├── favicon.png ├── raw │ ├── actions │ │ ├── catchFish.png │ │ ├── forgeSpronge.png │ │ ├── fuseDelphinium.png │ │ ├── getAutoTransmuter.png │ │ ├── getBerrier.png │ │ ├── getBiologist.png │ │ ├── getBrood.png │ │ ├── getChorus.png │ │ ├── getClam.png │ │ ├── getCrab.png │ │ ├── getCrystalMiner.png │ │ ├── getDiver.png │ │ ├── getDolphin.png │ │ ├── getFishMachine.png │ │ ├── getHarvester.png │ │ ├── getJellyfish.png │ │ ├── getLaser.png │ │ ├── getLobster.png │ │ ├── getMaker.png │ │ ├── getManta.png │ │ ├── getNurse.png │ │ ├── getPhilosopher.png │ │ ├── getPlanter.png │ │ ├── getQueen.png │ │ ├── getSandDigger.png │ │ ├── getScientist.png │ │ ├── getSeaApple.png │ │ ├── getShark.png │ │ ├── getShrimp.png │ │ ├── getTreasurer.png │ │ ├── getWhale.png │ │ ├── getWorker.png │ │ ├── jellyfishToScience.png │ │ ├── pearlConversion.png │ │ ├── prySponge.png │ │ ├── seaApplesToScience.png │ │ ├── smeltCoralglass.png │ │ ├── spongeToScience.png │ │ └── transmuteSharkonium.png │ ├── general │ │ ├── missing-action.png │ │ ├── missing-artifact.png │ │ └── missing-technology.png │ ├── planets │ │ ├── abandoned.png │ │ ├── chaotic.png │ │ ├── frigid.png │ │ ├── haven.png │ │ ├── marine.png │ │ ├── missing.png │ │ ├── shrouded.png │ │ ├── tempestuous.png │ │ └── violent.png │ └── technologies │ │ ├── automation.png │ │ ├── biology.png │ │ ├── crabBiology.png │ │ ├── crystalBite.png │ │ ├── crystalContainer.png │ │ ├── crystalSpade.png │ │ ├── engineering.png │ │ ├── exploration.png │ │ ├── farExploration.png │ │ ├── gateDiscovery.png │ │ ├── kelpHorticulture.png │ │ ├── laserRays.png │ │ ├── rayBiology.png │ │ ├── recyclerDiscovery.png │ │ ├── seabedGeology.png │ │ ├── statsDiscovery.png │ │ ├── sunObservation.png │ │ ├── thermalVents.png │ │ ├── transmutation.png │ │ ├── underwaterChemistry.png │ │ └── xenobiology.png ├── recyclerbg.png ├── sharkeventsprites.png ├── sharkgame.png ├── sharklogo.png ├── sharksprites.png ├── src │ ├── bg-gate.psd │ ├── bg-grotto.psd │ ├── bg-homesea.psd │ ├── bg-lab.psd │ ├── bg-recycler.psd │ ├── palette.png │ ├── purchaseicons3.png │ ├── recyclerbg.psd │ └── wiki.png └── wiki.ico ├── index.html ├── js ├── ai │ └── aitest.js ├── data │ ├── artifacts.js │ ├── homeactions.js │ ├── resourcetable.js │ ├── sprites.js │ ├── upgrades.js │ └── worldtypes.js ├── fallback │ ├── jquery.min.js │ └── underscore-min.js ├── gateway.js ├── lib │ ├── base64-ascii85.js │ └── pako.js ├── log.js ├── main.js ├── reference │ ├── jquery-2.1.1.js │ └── underscore.js ├── resources.js ├── save.js ├── settings.js ├── tabs │ ├── gate.js │ ├── home.js │ ├── lab.js │ ├── recycler.js │ ├── reflection.js │ └── stats.js ├── util.js └── world.js └── less ├── abandoned.less ├── chaotic.less ├── compilestyles.bat ├── frigid.less ├── haven.less ├── marine.less ├── shrouded.less ├── style.less ├── tempestuous.less └── violent.less /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/README.md -------------------------------------------------------------------------------- /cache.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/cache.manifest -------------------------------------------------------------------------------- /css/abandoned.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/css/abandoned.css -------------------------------------------------------------------------------- /css/chaotic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/css/chaotic.css -------------------------------------------------------------------------------- /css/frigid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/css/frigid.css -------------------------------------------------------------------------------- /css/haven.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/css/haven.css -------------------------------------------------------------------------------- /css/shrouded.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/css/shrouded.css -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/css/style.css -------------------------------------------------------------------------------- /css/tempestuous.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/css/tempestuous.css -------------------------------------------------------------------------------- /css/violent.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/css/violent.css -------------------------------------------------------------------------------- /data/raweventspritedata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/data/raweventspritedata.json -------------------------------------------------------------------------------- /data/rawspritedata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/data/rawspritedata.json -------------------------------------------------------------------------------- /data/sharkeventsprites.tps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/data/sharkeventsprites.tps -------------------------------------------------------------------------------- /data/sharksprites.tps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/data/sharksprites.tps -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/favicon.ico -------------------------------------------------------------------------------- /img/bg/bg-gate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/bg/bg-gate.png -------------------------------------------------------------------------------- /img/bg/bg-grotto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/bg/bg-grotto.png -------------------------------------------------------------------------------- /img/bg/bg-homesea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/bg/bg-homesea.png -------------------------------------------------------------------------------- /img/bg/bg-lab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/bg/bg-lab.png -------------------------------------------------------------------------------- /img/bg/bg-recycler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/bg/bg-recycler.png -------------------------------------------------------------------------------- /img/events/home/homesea-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/events/home/homesea-1.png -------------------------------------------------------------------------------- /img/events/home/homesea-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/events/home/homesea-10.png -------------------------------------------------------------------------------- /img/events/home/homesea-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/events/home/homesea-11.png -------------------------------------------------------------------------------- /img/events/home/homesea-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/events/home/homesea-12.png -------------------------------------------------------------------------------- /img/events/home/homesea-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/events/home/homesea-13.png -------------------------------------------------------------------------------- /img/events/home/homesea-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/events/home/homesea-14.png -------------------------------------------------------------------------------- /img/events/home/homesea-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/events/home/homesea-15.png -------------------------------------------------------------------------------- /img/events/home/homesea-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/events/home/homesea-16.png -------------------------------------------------------------------------------- /img/events/home/homesea-17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/events/home/homesea-17.png -------------------------------------------------------------------------------- /img/events/home/homesea-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/events/home/homesea-18.png -------------------------------------------------------------------------------- /img/events/home/homesea-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/events/home/homesea-19.png -------------------------------------------------------------------------------- /img/events/home/homesea-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/events/home/homesea-2.png -------------------------------------------------------------------------------- /img/events/home/homesea-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/events/home/homesea-20.png -------------------------------------------------------------------------------- /img/events/home/homesea-21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/events/home/homesea-21.png -------------------------------------------------------------------------------- /img/events/home/homesea-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/events/home/homesea-22.png -------------------------------------------------------------------------------- /img/events/home/homesea-23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/events/home/homesea-23.png -------------------------------------------------------------------------------- /img/events/home/homesea-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/events/home/homesea-24.png -------------------------------------------------------------------------------- /img/events/home/homesea-25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/events/home/homesea-25.png -------------------------------------------------------------------------------- /img/events/home/homesea-26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/events/home/homesea-26.png -------------------------------------------------------------------------------- /img/events/home/homesea-27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/events/home/homesea-27.png -------------------------------------------------------------------------------- /img/events/home/homesea-28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/events/home/homesea-28.png -------------------------------------------------------------------------------- /img/events/home/homesea-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/events/home/homesea-29.png -------------------------------------------------------------------------------- /img/events/home/homesea-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/events/home/homesea-3.png -------------------------------------------------------------------------------- /img/events/home/homesea-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/events/home/homesea-30.png -------------------------------------------------------------------------------- /img/events/home/homesea-31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/events/home/homesea-31.png -------------------------------------------------------------------------------- /img/events/home/homesea-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/events/home/homesea-32.png -------------------------------------------------------------------------------- /img/events/home/homesea-33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/events/home/homesea-33.png -------------------------------------------------------------------------------- /img/events/home/homesea-34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/events/home/homesea-34.png -------------------------------------------------------------------------------- /img/events/home/homesea-35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/events/home/homesea-35.png -------------------------------------------------------------------------------- /img/events/home/homesea-36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/events/home/homesea-36.png -------------------------------------------------------------------------------- /img/events/home/homesea-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/events/home/homesea-4.png -------------------------------------------------------------------------------- /img/events/home/homesea-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/events/home/homesea-5.png -------------------------------------------------------------------------------- /img/events/home/homesea-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/events/home/homesea-6.png -------------------------------------------------------------------------------- /img/events/home/homesea-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/events/home/homesea-7.png -------------------------------------------------------------------------------- /img/events/home/homesea-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/events/home/homesea-8.png -------------------------------------------------------------------------------- /img/events/home/homesea-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/events/home/homesea-9.png -------------------------------------------------------------------------------- /img/events/home/homesea-missing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/events/home/homesea-missing.png -------------------------------------------------------------------------------- /img/events/home/png2F36.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/events/home/png2F36.tmp -------------------------------------------------------------------------------- /img/events/home/pngDF49.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/events/home/pngDF49.tmp -------------------------------------------------------------------------------- /img/events/misc/scene-gate-closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/events/misc/scene-gate-closed.png -------------------------------------------------------------------------------- /img/events/misc/scene-gate-one-slot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/events/misc/scene-gate-one-slot.png -------------------------------------------------------------------------------- /img/events/misc/scene-gate-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/events/misc/scene-gate-open.png -------------------------------------------------------------------------------- /img/events/misc/scene-grotto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/events/misc/scene-grotto.png -------------------------------------------------------------------------------- /img/events/misc/scene-lab-done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/events/misc/scene-lab-done.png -------------------------------------------------------------------------------- /img/events/misc/scene-lab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/events/misc/scene-lab.png -------------------------------------------------------------------------------- /img/events/misc/scene-recycler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/events/misc/scene-recycler.png -------------------------------------------------------------------------------- /img/events/misc/scene-reflection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/events/misc/scene-reflection.png -------------------------------------------------------------------------------- /img/fanarts/CookieShark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/fanarts/CookieShark.png -------------------------------------------------------------------------------- /img/fanarts/LaserRay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/fanarts/LaserRay.png -------------------------------------------------------------------------------- /img/fanarts/SharkScience.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/fanarts/SharkScience.png -------------------------------------------------------------------------------- /img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/favicon.png -------------------------------------------------------------------------------- /img/raw/actions/catchFish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/actions/catchFish.png -------------------------------------------------------------------------------- /img/raw/actions/forgeSpronge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/actions/forgeSpronge.png -------------------------------------------------------------------------------- /img/raw/actions/fuseDelphinium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/actions/fuseDelphinium.png -------------------------------------------------------------------------------- /img/raw/actions/getAutoTransmuter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/actions/getAutoTransmuter.png -------------------------------------------------------------------------------- /img/raw/actions/getBerrier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/actions/getBerrier.png -------------------------------------------------------------------------------- /img/raw/actions/getBiologist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/actions/getBiologist.png -------------------------------------------------------------------------------- /img/raw/actions/getBrood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/actions/getBrood.png -------------------------------------------------------------------------------- /img/raw/actions/getChorus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/actions/getChorus.png -------------------------------------------------------------------------------- /img/raw/actions/getClam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/actions/getClam.png -------------------------------------------------------------------------------- /img/raw/actions/getCrab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/actions/getCrab.png -------------------------------------------------------------------------------- /img/raw/actions/getCrystalMiner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/actions/getCrystalMiner.png -------------------------------------------------------------------------------- /img/raw/actions/getDiver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/actions/getDiver.png -------------------------------------------------------------------------------- /img/raw/actions/getDolphin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/actions/getDolphin.png -------------------------------------------------------------------------------- /img/raw/actions/getFishMachine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/actions/getFishMachine.png -------------------------------------------------------------------------------- /img/raw/actions/getHarvester.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/actions/getHarvester.png -------------------------------------------------------------------------------- /img/raw/actions/getJellyfish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/actions/getJellyfish.png -------------------------------------------------------------------------------- /img/raw/actions/getLaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/actions/getLaser.png -------------------------------------------------------------------------------- /img/raw/actions/getLobster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/actions/getLobster.png -------------------------------------------------------------------------------- /img/raw/actions/getMaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/actions/getMaker.png -------------------------------------------------------------------------------- /img/raw/actions/getManta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/actions/getManta.png -------------------------------------------------------------------------------- /img/raw/actions/getNurse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/actions/getNurse.png -------------------------------------------------------------------------------- /img/raw/actions/getPhilosopher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/actions/getPhilosopher.png -------------------------------------------------------------------------------- /img/raw/actions/getPlanter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/actions/getPlanter.png -------------------------------------------------------------------------------- /img/raw/actions/getQueen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/actions/getQueen.png -------------------------------------------------------------------------------- /img/raw/actions/getSandDigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/actions/getSandDigger.png -------------------------------------------------------------------------------- /img/raw/actions/getScientist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/actions/getScientist.png -------------------------------------------------------------------------------- /img/raw/actions/getSeaApple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/actions/getSeaApple.png -------------------------------------------------------------------------------- /img/raw/actions/getShark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/actions/getShark.png -------------------------------------------------------------------------------- /img/raw/actions/getShrimp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/actions/getShrimp.png -------------------------------------------------------------------------------- /img/raw/actions/getTreasurer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/actions/getTreasurer.png -------------------------------------------------------------------------------- /img/raw/actions/getWhale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/actions/getWhale.png -------------------------------------------------------------------------------- /img/raw/actions/getWorker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/actions/getWorker.png -------------------------------------------------------------------------------- /img/raw/actions/jellyfishToScience.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/actions/jellyfishToScience.png -------------------------------------------------------------------------------- /img/raw/actions/pearlConversion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/actions/pearlConversion.png -------------------------------------------------------------------------------- /img/raw/actions/prySponge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/actions/prySponge.png -------------------------------------------------------------------------------- /img/raw/actions/seaApplesToScience.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/actions/seaApplesToScience.png -------------------------------------------------------------------------------- /img/raw/actions/smeltCoralglass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/actions/smeltCoralglass.png -------------------------------------------------------------------------------- /img/raw/actions/spongeToScience.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/actions/spongeToScience.png -------------------------------------------------------------------------------- /img/raw/actions/transmuteSharkonium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/actions/transmuteSharkonium.png -------------------------------------------------------------------------------- /img/raw/general/missing-action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/general/missing-action.png -------------------------------------------------------------------------------- /img/raw/general/missing-artifact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/general/missing-artifact.png -------------------------------------------------------------------------------- /img/raw/general/missing-technology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/general/missing-technology.png -------------------------------------------------------------------------------- /img/raw/planets/abandoned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/planets/abandoned.png -------------------------------------------------------------------------------- /img/raw/planets/chaotic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/planets/chaotic.png -------------------------------------------------------------------------------- /img/raw/planets/frigid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/planets/frigid.png -------------------------------------------------------------------------------- /img/raw/planets/haven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/planets/haven.png -------------------------------------------------------------------------------- /img/raw/planets/marine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/planets/marine.png -------------------------------------------------------------------------------- /img/raw/planets/missing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/planets/missing.png -------------------------------------------------------------------------------- /img/raw/planets/shrouded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/planets/shrouded.png -------------------------------------------------------------------------------- /img/raw/planets/tempestuous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/planets/tempestuous.png -------------------------------------------------------------------------------- /img/raw/planets/violent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/planets/violent.png -------------------------------------------------------------------------------- /img/raw/technologies/automation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/technologies/automation.png -------------------------------------------------------------------------------- /img/raw/technologies/biology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/technologies/biology.png -------------------------------------------------------------------------------- /img/raw/technologies/crabBiology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/technologies/crabBiology.png -------------------------------------------------------------------------------- /img/raw/technologies/crystalBite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/technologies/crystalBite.png -------------------------------------------------------------------------------- /img/raw/technologies/crystalContainer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/technologies/crystalContainer.png -------------------------------------------------------------------------------- /img/raw/technologies/crystalSpade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/technologies/crystalSpade.png -------------------------------------------------------------------------------- /img/raw/technologies/engineering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/technologies/engineering.png -------------------------------------------------------------------------------- /img/raw/technologies/exploration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/technologies/exploration.png -------------------------------------------------------------------------------- /img/raw/technologies/farExploration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/technologies/farExploration.png -------------------------------------------------------------------------------- /img/raw/technologies/gateDiscovery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/technologies/gateDiscovery.png -------------------------------------------------------------------------------- /img/raw/technologies/kelpHorticulture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/technologies/kelpHorticulture.png -------------------------------------------------------------------------------- /img/raw/technologies/laserRays.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/technologies/laserRays.png -------------------------------------------------------------------------------- /img/raw/technologies/rayBiology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/technologies/rayBiology.png -------------------------------------------------------------------------------- /img/raw/technologies/recyclerDiscovery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/technologies/recyclerDiscovery.png -------------------------------------------------------------------------------- /img/raw/technologies/seabedGeology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/technologies/seabedGeology.png -------------------------------------------------------------------------------- /img/raw/technologies/statsDiscovery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/technologies/statsDiscovery.png -------------------------------------------------------------------------------- /img/raw/technologies/sunObservation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/technologies/sunObservation.png -------------------------------------------------------------------------------- /img/raw/technologies/thermalVents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/technologies/thermalVents.png -------------------------------------------------------------------------------- /img/raw/technologies/transmutation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/technologies/transmutation.png -------------------------------------------------------------------------------- /img/raw/technologies/underwaterChemistry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/technologies/underwaterChemistry.png -------------------------------------------------------------------------------- /img/raw/technologies/xenobiology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/raw/technologies/xenobiology.png -------------------------------------------------------------------------------- /img/recyclerbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/recyclerbg.png -------------------------------------------------------------------------------- /img/sharkeventsprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/sharkeventsprites.png -------------------------------------------------------------------------------- /img/sharkgame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/sharkgame.png -------------------------------------------------------------------------------- /img/sharklogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/sharklogo.png -------------------------------------------------------------------------------- /img/sharksprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/sharksprites.png -------------------------------------------------------------------------------- /img/src/bg-gate.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/src/bg-gate.psd -------------------------------------------------------------------------------- /img/src/bg-grotto.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/src/bg-grotto.psd -------------------------------------------------------------------------------- /img/src/bg-homesea.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/src/bg-homesea.psd -------------------------------------------------------------------------------- /img/src/bg-lab.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/src/bg-lab.psd -------------------------------------------------------------------------------- /img/src/bg-recycler.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/src/bg-recycler.psd -------------------------------------------------------------------------------- /img/src/palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/src/palette.png -------------------------------------------------------------------------------- /img/src/purchaseicons3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/src/purchaseicons3.png -------------------------------------------------------------------------------- /img/src/recyclerbg.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/src/recyclerbg.psd -------------------------------------------------------------------------------- /img/src/wiki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/src/wiki.png -------------------------------------------------------------------------------- /img/wiki.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/img/wiki.ico -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/index.html -------------------------------------------------------------------------------- /js/ai/aitest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/js/ai/aitest.js -------------------------------------------------------------------------------- /js/data/artifacts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/js/data/artifacts.js -------------------------------------------------------------------------------- /js/data/homeactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/js/data/homeactions.js -------------------------------------------------------------------------------- /js/data/resourcetable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/js/data/resourcetable.js -------------------------------------------------------------------------------- /js/data/sprites.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/js/data/sprites.js -------------------------------------------------------------------------------- /js/data/upgrades.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/js/data/upgrades.js -------------------------------------------------------------------------------- /js/data/worldtypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/js/data/worldtypes.js -------------------------------------------------------------------------------- /js/fallback/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/js/fallback/jquery.min.js -------------------------------------------------------------------------------- /js/fallback/underscore-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/js/fallback/underscore-min.js -------------------------------------------------------------------------------- /js/gateway.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/js/gateway.js -------------------------------------------------------------------------------- /js/lib/base64-ascii85.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/js/lib/base64-ascii85.js -------------------------------------------------------------------------------- /js/lib/pako.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/js/lib/pako.js -------------------------------------------------------------------------------- /js/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/js/log.js -------------------------------------------------------------------------------- /js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/js/main.js -------------------------------------------------------------------------------- /js/reference/jquery-2.1.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/js/reference/jquery-2.1.1.js -------------------------------------------------------------------------------- /js/reference/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/js/reference/underscore.js -------------------------------------------------------------------------------- /js/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/js/resources.js -------------------------------------------------------------------------------- /js/save.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/js/save.js -------------------------------------------------------------------------------- /js/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/js/settings.js -------------------------------------------------------------------------------- /js/tabs/gate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/js/tabs/gate.js -------------------------------------------------------------------------------- /js/tabs/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/js/tabs/home.js -------------------------------------------------------------------------------- /js/tabs/lab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/js/tabs/lab.js -------------------------------------------------------------------------------- /js/tabs/recycler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/js/tabs/recycler.js -------------------------------------------------------------------------------- /js/tabs/reflection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/js/tabs/reflection.js -------------------------------------------------------------------------------- /js/tabs/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/js/tabs/stats.js -------------------------------------------------------------------------------- /js/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/js/util.js -------------------------------------------------------------------------------- /js/world.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/js/world.js -------------------------------------------------------------------------------- /less/abandoned.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/less/abandoned.less -------------------------------------------------------------------------------- /less/chaotic.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/less/chaotic.less -------------------------------------------------------------------------------- /less/compilestyles.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/less/compilestyles.bat -------------------------------------------------------------------------------- /less/frigid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/less/frigid.less -------------------------------------------------------------------------------- /less/haven.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/less/haven.less -------------------------------------------------------------------------------- /less/marine.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/less/marine.less -------------------------------------------------------------------------------- /less/shrouded.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/less/shrouded.less -------------------------------------------------------------------------------- /less/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/less/style.less -------------------------------------------------------------------------------- /less/tempestuous.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/less/tempestuous.less -------------------------------------------------------------------------------- /less/violent.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cirrial/SharkGame/HEAD/less/violent.less --------------------------------------------------------------------------------