├── .gitignore ├── LICENSE.txt ├── README.md ├── ept.code-workspace ├── ept.webmanifest ├── favicon.ico ├── fonts ├── BRLNSDB.css ├── BRLNSDB.eot ├── BRLNSDB.otf ├── BRLNSDB.svg ├── BRLNSDB.ttf └── BRLNSDB.woff ├── img ├── background.png ├── banner-beer.png ├── button-achievements.png ├── button-back.png ├── button-beer.png ├── button-continue.png ├── button-credits.png ├── button-home.png ├── button-mainmenu.png ├── button-music-off.png ├── button-music-on.png ├── button-pause.png ├── button-settings.png ├── button-sound-off.png ├── button-sound-on.png ├── button-start.png ├── button-tryagain.png ├── clickme.png ├── enclave-phaser-template.png ├── fork.png ├── icons │ ├── icon-128.png │ ├── icon-168.png │ ├── icon-192.png │ ├── icon-256.png │ ├── icon-32.png │ ├── icon-512.png │ ├── icon-64.png │ └── icon-96.png ├── loader.png ├── loading-background.png ├── logo-enclave.png ├── overlay.png ├── particle.png ├── pattern.png └── title.png ├── index.html ├── screens ├── EPT-Credits.png ├── EPT-GameOver.png ├── EPT-Gameplay.png ├── EPT-Keyboard.png ├── EPT-Loading.png ├── EPT-MainMenu.png ├── EPT-Paused.png ├── EPT-Settings.png └── EPT-Story.png ├── sfx ├── audio-button.m4a ├── audio-button.mp3 ├── audio-button.ogg ├── music-bitsnbites-liver.m4a ├── music-bitsnbites-liver.mp3 └── music-bitsnbites-liver.ogg └── src ├── Boot.js ├── Game.js ├── MainMenu.js ├── Preloader.js ├── Settings.js ├── Story.js ├── phaser.3.80.1.min.js ├── plugins └── webfont.js ├── start.js ├── sw.js └── utils.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/README.md -------------------------------------------------------------------------------- /ept.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/ept.code-workspace -------------------------------------------------------------------------------- /ept.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/ept.webmanifest -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/favicon.ico -------------------------------------------------------------------------------- /fonts/BRLNSDB.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/fonts/BRLNSDB.css -------------------------------------------------------------------------------- /fonts/BRLNSDB.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/fonts/BRLNSDB.eot -------------------------------------------------------------------------------- /fonts/BRLNSDB.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/fonts/BRLNSDB.otf -------------------------------------------------------------------------------- /fonts/BRLNSDB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/fonts/BRLNSDB.svg -------------------------------------------------------------------------------- /fonts/BRLNSDB.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/fonts/BRLNSDB.ttf -------------------------------------------------------------------------------- /fonts/BRLNSDB.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/fonts/BRLNSDB.woff -------------------------------------------------------------------------------- /img/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/img/background.png -------------------------------------------------------------------------------- /img/banner-beer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/img/banner-beer.png -------------------------------------------------------------------------------- /img/button-achievements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/img/button-achievements.png -------------------------------------------------------------------------------- /img/button-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/img/button-back.png -------------------------------------------------------------------------------- /img/button-beer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/img/button-beer.png -------------------------------------------------------------------------------- /img/button-continue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/img/button-continue.png -------------------------------------------------------------------------------- /img/button-credits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/img/button-credits.png -------------------------------------------------------------------------------- /img/button-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/img/button-home.png -------------------------------------------------------------------------------- /img/button-mainmenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/img/button-mainmenu.png -------------------------------------------------------------------------------- /img/button-music-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/img/button-music-off.png -------------------------------------------------------------------------------- /img/button-music-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/img/button-music-on.png -------------------------------------------------------------------------------- /img/button-pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/img/button-pause.png -------------------------------------------------------------------------------- /img/button-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/img/button-settings.png -------------------------------------------------------------------------------- /img/button-sound-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/img/button-sound-off.png -------------------------------------------------------------------------------- /img/button-sound-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/img/button-sound-on.png -------------------------------------------------------------------------------- /img/button-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/img/button-start.png -------------------------------------------------------------------------------- /img/button-tryagain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/img/button-tryagain.png -------------------------------------------------------------------------------- /img/clickme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/img/clickme.png -------------------------------------------------------------------------------- /img/enclave-phaser-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/img/enclave-phaser-template.png -------------------------------------------------------------------------------- /img/fork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/img/fork.png -------------------------------------------------------------------------------- /img/icons/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/img/icons/icon-128.png -------------------------------------------------------------------------------- /img/icons/icon-168.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/img/icons/icon-168.png -------------------------------------------------------------------------------- /img/icons/icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/img/icons/icon-192.png -------------------------------------------------------------------------------- /img/icons/icon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/img/icons/icon-256.png -------------------------------------------------------------------------------- /img/icons/icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/img/icons/icon-32.png -------------------------------------------------------------------------------- /img/icons/icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/img/icons/icon-512.png -------------------------------------------------------------------------------- /img/icons/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/img/icons/icon-64.png -------------------------------------------------------------------------------- /img/icons/icon-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/img/icons/icon-96.png -------------------------------------------------------------------------------- /img/loader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/img/loader.png -------------------------------------------------------------------------------- /img/loading-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/img/loading-background.png -------------------------------------------------------------------------------- /img/logo-enclave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/img/logo-enclave.png -------------------------------------------------------------------------------- /img/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/img/overlay.png -------------------------------------------------------------------------------- /img/particle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/img/particle.png -------------------------------------------------------------------------------- /img/pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/img/pattern.png -------------------------------------------------------------------------------- /img/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/img/title.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/index.html -------------------------------------------------------------------------------- /screens/EPT-Credits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/screens/EPT-Credits.png -------------------------------------------------------------------------------- /screens/EPT-GameOver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/screens/EPT-GameOver.png -------------------------------------------------------------------------------- /screens/EPT-Gameplay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/screens/EPT-Gameplay.png -------------------------------------------------------------------------------- /screens/EPT-Keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/screens/EPT-Keyboard.png -------------------------------------------------------------------------------- /screens/EPT-Loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/screens/EPT-Loading.png -------------------------------------------------------------------------------- /screens/EPT-MainMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/screens/EPT-MainMenu.png -------------------------------------------------------------------------------- /screens/EPT-Paused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/screens/EPT-Paused.png -------------------------------------------------------------------------------- /screens/EPT-Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/screens/EPT-Settings.png -------------------------------------------------------------------------------- /screens/EPT-Story.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/screens/EPT-Story.png -------------------------------------------------------------------------------- /sfx/audio-button.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/sfx/audio-button.m4a -------------------------------------------------------------------------------- /sfx/audio-button.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/sfx/audio-button.mp3 -------------------------------------------------------------------------------- /sfx/audio-button.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/sfx/audio-button.ogg -------------------------------------------------------------------------------- /sfx/music-bitsnbites-liver.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/sfx/music-bitsnbites-liver.m4a -------------------------------------------------------------------------------- /sfx/music-bitsnbites-liver.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/sfx/music-bitsnbites-liver.mp3 -------------------------------------------------------------------------------- /sfx/music-bitsnbites-liver.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/sfx/music-bitsnbites-liver.ogg -------------------------------------------------------------------------------- /src/Boot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/src/Boot.js -------------------------------------------------------------------------------- /src/Game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/src/Game.js -------------------------------------------------------------------------------- /src/MainMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/src/MainMenu.js -------------------------------------------------------------------------------- /src/Preloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/src/Preloader.js -------------------------------------------------------------------------------- /src/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/src/Settings.js -------------------------------------------------------------------------------- /src/Story.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/src/Story.js -------------------------------------------------------------------------------- /src/phaser.3.80.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/src/phaser.3.80.1.min.js -------------------------------------------------------------------------------- /src/plugins/webfont.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/src/plugins/webfont.js -------------------------------------------------------------------------------- /src/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/src/start.js -------------------------------------------------------------------------------- /src/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/src/sw.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EnclaveGames/Enclave-Phaser-Template/HEAD/src/utils.js --------------------------------------------------------------------------------