├── .gitignore ├── CNAME ├── README.md ├── dist └── bundle.js ├── favicon.ico ├── images ├── boots.png ├── chest.png ├── gloves.png ├── helmet.png ├── legs.png ├── shield.png ├── skeleton.png ├── sword.png ├── trash-can.png ├── zombie-192.png └── zombie-512.png ├── index.html ├── js ├── angular.min.js ├── lz-string.min.js ├── pixi-legacy.min.js └── pixi.min.js ├── manifest.json ├── sprites ├── army-20191003-175038.piskel ├── army.json ├── army.piskel ├── army.png ├── army2.png ├── blackguy.json ├── blackguy.piskel ├── blackguy.png ├── bonecollector-20191003-212849.piskel ├── bonecollector.json ├── bonecollector.png ├── buildings.json ├── buildings.png ├── cop.json ├── cop.piskel ├── cop.png ├── doctor.json ├── doctor.png ├── dogs.json ├── dogs.png ├── fenceposts.json ├── fenceposts.png ├── fortress.json ├── fortress.png ├── fortress2.png ├── golem.json ├── golem.png ├── grass.png ├── grass2.png ├── graveyard.json ├── graveyard.png ├── graveyard2.png ├── ground.json ├── harpy.json ├── harpy.png ├── humans.json ├── humans.png ├── megagraveyard.png ├── objects2.json ├── objects2.png ├── skeleton.json ├── skeleton.png ├── tank.json ├── tank.png ├── trees.json ├── trees.png ├── trees2.json ├── trees2.png ├── whiteguy.json ├── whiteguy.piskel ├── whiteguy.png ├── zombie-20190930-144119.piskel ├── zombie.json ├── zombie.piskel └── zombie.png ├── templates ├── championshold.html ├── constructionmenu.html ├── factorymenu.html ├── graveyardmenu.html ├── levelselect.html ├── levelstats.html ├── optionsmenu.html ├── prestigemenu.html ├── runesmithmenu.html └── shopmenu.html └── zombiemancer.css /.gitignore: -------------------------------------------------------------------------------- 1 | .*.* 2 | *.piskel 3 | dist/bundle.js.map 4 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | incremancer.gti.nz -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/README.md -------------------------------------------------------------------------------- /dist/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/dist/bundle.js -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/favicon.ico -------------------------------------------------------------------------------- /images/boots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/images/boots.png -------------------------------------------------------------------------------- /images/chest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/images/chest.png -------------------------------------------------------------------------------- /images/gloves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/images/gloves.png -------------------------------------------------------------------------------- /images/helmet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/images/helmet.png -------------------------------------------------------------------------------- /images/legs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/images/legs.png -------------------------------------------------------------------------------- /images/shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/images/shield.png -------------------------------------------------------------------------------- /images/skeleton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/images/skeleton.png -------------------------------------------------------------------------------- /images/sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/images/sword.png -------------------------------------------------------------------------------- /images/trash-can.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/images/trash-can.png -------------------------------------------------------------------------------- /images/zombie-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/images/zombie-192.png -------------------------------------------------------------------------------- /images/zombie-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/images/zombie-512.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/index.html -------------------------------------------------------------------------------- /js/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/js/angular.min.js -------------------------------------------------------------------------------- /js/lz-string.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/js/lz-string.min.js -------------------------------------------------------------------------------- /js/pixi-legacy.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/js/pixi-legacy.min.js -------------------------------------------------------------------------------- /js/pixi.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/js/pixi.min.js -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/manifest.json -------------------------------------------------------------------------------- /sprites/army-20191003-175038.piskel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/army-20191003-175038.piskel -------------------------------------------------------------------------------- /sprites/army.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/army.json -------------------------------------------------------------------------------- /sprites/army.piskel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/army.piskel -------------------------------------------------------------------------------- /sprites/army.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/army.png -------------------------------------------------------------------------------- /sprites/army2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/army2.png -------------------------------------------------------------------------------- /sprites/blackguy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/blackguy.json -------------------------------------------------------------------------------- /sprites/blackguy.piskel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/blackguy.piskel -------------------------------------------------------------------------------- /sprites/blackguy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/blackguy.png -------------------------------------------------------------------------------- /sprites/bonecollector-20191003-212849.piskel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/bonecollector-20191003-212849.piskel -------------------------------------------------------------------------------- /sprites/bonecollector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/bonecollector.json -------------------------------------------------------------------------------- /sprites/bonecollector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/bonecollector.png -------------------------------------------------------------------------------- /sprites/buildings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/buildings.json -------------------------------------------------------------------------------- /sprites/buildings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/buildings.png -------------------------------------------------------------------------------- /sprites/cop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/cop.json -------------------------------------------------------------------------------- /sprites/cop.piskel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/cop.piskel -------------------------------------------------------------------------------- /sprites/cop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/cop.png -------------------------------------------------------------------------------- /sprites/doctor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/doctor.json -------------------------------------------------------------------------------- /sprites/doctor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/doctor.png -------------------------------------------------------------------------------- /sprites/dogs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/dogs.json -------------------------------------------------------------------------------- /sprites/dogs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/dogs.png -------------------------------------------------------------------------------- /sprites/fenceposts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/fenceposts.json -------------------------------------------------------------------------------- /sprites/fenceposts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/fenceposts.png -------------------------------------------------------------------------------- /sprites/fortress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/fortress.json -------------------------------------------------------------------------------- /sprites/fortress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/fortress.png -------------------------------------------------------------------------------- /sprites/fortress2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/fortress2.png -------------------------------------------------------------------------------- /sprites/golem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/golem.json -------------------------------------------------------------------------------- /sprites/golem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/golem.png -------------------------------------------------------------------------------- /sprites/grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/grass.png -------------------------------------------------------------------------------- /sprites/grass2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/grass2.png -------------------------------------------------------------------------------- /sprites/graveyard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/graveyard.json -------------------------------------------------------------------------------- /sprites/graveyard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/graveyard.png -------------------------------------------------------------------------------- /sprites/graveyard2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/graveyard2.png -------------------------------------------------------------------------------- /sprites/ground.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/ground.json -------------------------------------------------------------------------------- /sprites/harpy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/harpy.json -------------------------------------------------------------------------------- /sprites/harpy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/harpy.png -------------------------------------------------------------------------------- /sprites/humans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/humans.json -------------------------------------------------------------------------------- /sprites/humans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/humans.png -------------------------------------------------------------------------------- /sprites/megagraveyard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/megagraveyard.png -------------------------------------------------------------------------------- /sprites/objects2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/objects2.json -------------------------------------------------------------------------------- /sprites/objects2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/objects2.png -------------------------------------------------------------------------------- /sprites/skeleton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/skeleton.json -------------------------------------------------------------------------------- /sprites/skeleton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/skeleton.png -------------------------------------------------------------------------------- /sprites/tank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/tank.json -------------------------------------------------------------------------------- /sprites/tank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/tank.png -------------------------------------------------------------------------------- /sprites/trees.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/trees.json -------------------------------------------------------------------------------- /sprites/trees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/trees.png -------------------------------------------------------------------------------- /sprites/trees2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/trees2.json -------------------------------------------------------------------------------- /sprites/trees2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/trees2.png -------------------------------------------------------------------------------- /sprites/whiteguy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/whiteguy.json -------------------------------------------------------------------------------- /sprites/whiteguy.piskel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/whiteguy.piskel -------------------------------------------------------------------------------- /sprites/whiteguy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/whiteguy.png -------------------------------------------------------------------------------- /sprites/zombie-20190930-144119.piskel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/zombie-20190930-144119.piskel -------------------------------------------------------------------------------- /sprites/zombie.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/zombie.json -------------------------------------------------------------------------------- /sprites/zombie.piskel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/zombie.piskel -------------------------------------------------------------------------------- /sprites/zombie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/sprites/zombie.png -------------------------------------------------------------------------------- /templates/championshold.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/templates/championshold.html -------------------------------------------------------------------------------- /templates/constructionmenu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/templates/constructionmenu.html -------------------------------------------------------------------------------- /templates/factorymenu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/templates/factorymenu.html -------------------------------------------------------------------------------- /templates/graveyardmenu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/templates/graveyardmenu.html -------------------------------------------------------------------------------- /templates/levelselect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/templates/levelselect.html -------------------------------------------------------------------------------- /templates/levelstats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/templates/levelstats.html -------------------------------------------------------------------------------- /templates/optionsmenu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/templates/optionsmenu.html -------------------------------------------------------------------------------- /templates/prestigemenu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/templates/prestigemenu.html -------------------------------------------------------------------------------- /templates/runesmithmenu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/templates/runesmithmenu.html -------------------------------------------------------------------------------- /templates/shopmenu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/templates/shopmenu.html -------------------------------------------------------------------------------- /zombiemancer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmgittins/incremancer/HEAD/zombiemancer.css --------------------------------------------------------------------------------