├── .gitignore ├── Readme.md ├── character ├── bg.pxm ├── character.pxm ├── index.html └── public │ ├── game.js │ ├── images │ ├── bg.jpg │ ├── bird-0.png │ ├── bird-1.png │ ├── bird-2.png │ ├── bird-3.png │ ├── bird-4.png │ ├── bird-5.png │ ├── bird-wings-up.png │ ├── cat.png │ ├── fence-shadow.png │ ├── fence.png │ ├── grass-tiny.png │ ├── grass.png │ ├── guy-eye-left.png │ ├── guy-eye-right.png │ ├── guy-shadow.png │ ├── guy.png │ ├── hat.png │ ├── hill-1.png │ ├── hill-2.png │ ├── hill-3.png │ └── hill-right.png │ ├── style.css │ └── tools.js ├── common ├── images │ └── bg.jpg ├── move.js ├── preload.css └── preload.js ├── index.html └── rain ├── guy.pxm ├── index.html ├── particles.pxm └── public ├── game.js ├── images ├── balloons.png ├── grass.png ├── guy-arm-left.png ├── guy-arm-right.png ├── guy-body.png ├── guy-head.png ├── guy-shadow.png └── rain.png └── style.css /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/game-prototypes/HEAD/Readme.md -------------------------------------------------------------------------------- /character/bg.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/game-prototypes/HEAD/character/bg.pxm -------------------------------------------------------------------------------- /character/character.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/game-prototypes/HEAD/character/character.pxm -------------------------------------------------------------------------------- /character/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/game-prototypes/HEAD/character/index.html -------------------------------------------------------------------------------- /character/public/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/game-prototypes/HEAD/character/public/game.js -------------------------------------------------------------------------------- /character/public/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/game-prototypes/HEAD/character/public/images/bg.jpg -------------------------------------------------------------------------------- /character/public/images/bird-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/game-prototypes/HEAD/character/public/images/bird-0.png -------------------------------------------------------------------------------- /character/public/images/bird-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/game-prototypes/HEAD/character/public/images/bird-1.png -------------------------------------------------------------------------------- /character/public/images/bird-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/game-prototypes/HEAD/character/public/images/bird-2.png -------------------------------------------------------------------------------- /character/public/images/bird-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/game-prototypes/HEAD/character/public/images/bird-3.png -------------------------------------------------------------------------------- /character/public/images/bird-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/game-prototypes/HEAD/character/public/images/bird-4.png -------------------------------------------------------------------------------- /character/public/images/bird-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/game-prototypes/HEAD/character/public/images/bird-5.png -------------------------------------------------------------------------------- /character/public/images/bird-wings-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/game-prototypes/HEAD/character/public/images/bird-wings-up.png -------------------------------------------------------------------------------- /character/public/images/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/game-prototypes/HEAD/character/public/images/cat.png -------------------------------------------------------------------------------- /character/public/images/fence-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/game-prototypes/HEAD/character/public/images/fence-shadow.png -------------------------------------------------------------------------------- /character/public/images/fence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/game-prototypes/HEAD/character/public/images/fence.png -------------------------------------------------------------------------------- /character/public/images/grass-tiny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/game-prototypes/HEAD/character/public/images/grass-tiny.png -------------------------------------------------------------------------------- /character/public/images/grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/game-prototypes/HEAD/character/public/images/grass.png -------------------------------------------------------------------------------- /character/public/images/guy-eye-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/game-prototypes/HEAD/character/public/images/guy-eye-left.png -------------------------------------------------------------------------------- /character/public/images/guy-eye-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/game-prototypes/HEAD/character/public/images/guy-eye-right.png -------------------------------------------------------------------------------- /character/public/images/guy-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/game-prototypes/HEAD/character/public/images/guy-shadow.png -------------------------------------------------------------------------------- /character/public/images/guy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/game-prototypes/HEAD/character/public/images/guy.png -------------------------------------------------------------------------------- /character/public/images/hat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/game-prototypes/HEAD/character/public/images/hat.png -------------------------------------------------------------------------------- /character/public/images/hill-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/game-prototypes/HEAD/character/public/images/hill-1.png -------------------------------------------------------------------------------- /character/public/images/hill-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/game-prototypes/HEAD/character/public/images/hill-2.png -------------------------------------------------------------------------------- /character/public/images/hill-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/game-prototypes/HEAD/character/public/images/hill-3.png -------------------------------------------------------------------------------- /character/public/images/hill-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/game-prototypes/HEAD/character/public/images/hill-right.png -------------------------------------------------------------------------------- /character/public/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/game-prototypes/HEAD/character/public/style.css -------------------------------------------------------------------------------- /character/public/tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/game-prototypes/HEAD/character/public/tools.js -------------------------------------------------------------------------------- /common/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/game-prototypes/HEAD/common/images/bg.jpg -------------------------------------------------------------------------------- /common/move.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/game-prototypes/HEAD/common/move.js -------------------------------------------------------------------------------- /common/preload.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/game-prototypes/HEAD/common/preload.css -------------------------------------------------------------------------------- /common/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/game-prototypes/HEAD/common/preload.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/game-prototypes/HEAD/index.html -------------------------------------------------------------------------------- /rain/guy.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/game-prototypes/HEAD/rain/guy.pxm -------------------------------------------------------------------------------- /rain/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/game-prototypes/HEAD/rain/index.html -------------------------------------------------------------------------------- /rain/particles.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/game-prototypes/HEAD/rain/particles.pxm -------------------------------------------------------------------------------- /rain/public/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/game-prototypes/HEAD/rain/public/game.js -------------------------------------------------------------------------------- /rain/public/images/balloons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/game-prototypes/HEAD/rain/public/images/balloons.png -------------------------------------------------------------------------------- /rain/public/images/grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/game-prototypes/HEAD/rain/public/images/grass.png -------------------------------------------------------------------------------- /rain/public/images/guy-arm-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/game-prototypes/HEAD/rain/public/images/guy-arm-left.png -------------------------------------------------------------------------------- /rain/public/images/guy-arm-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/game-prototypes/HEAD/rain/public/images/guy-arm-right.png -------------------------------------------------------------------------------- /rain/public/images/guy-body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/game-prototypes/HEAD/rain/public/images/guy-body.png -------------------------------------------------------------------------------- /rain/public/images/guy-head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/game-prototypes/HEAD/rain/public/images/guy-head.png -------------------------------------------------------------------------------- /rain/public/images/guy-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/game-prototypes/HEAD/rain/public/images/guy-shadow.png -------------------------------------------------------------------------------- /rain/public/images/rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/game-prototypes/HEAD/rain/public/images/rain.png -------------------------------------------------------------------------------- /rain/public/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/game-prototypes/HEAD/rain/public/style.css --------------------------------------------------------------------------------