{"id":19957608,"url":"https://github.com/cliftondavies/retoohs-ecaps","last_synced_at":"2026-04-05T22:33:31.781Z","repository":{"id":54740574,"uuid":"330787281","full_name":"cliftondavies/Retoohs-Ecaps","owner":"cliftondavies","description":"A browser-based shooter game.","archived":false,"fork":false,"pushed_at":"2021-02-18T18:51:27.000Z","size":817,"stargazers_count":2,"open_issues_count":4,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-12T07:12:52.354Z","etag":null,"topics":["fetch-api","html5","javascript","leaderboard-api","netlify","npm","phaser3","webpack"],"latest_commit_sha":null,"homepage":"https://retoohs-ecaps.netlify.app/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cliftondavies.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-01-18T21:08:02.000Z","updated_at":"2021-09-26T20:26:17.000Z","dependencies_parsed_at":"2022-08-14T01:20:40.869Z","dependency_job_id":null,"html_url":"https://github.com/cliftondavies/Retoohs-Ecaps","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cliftondavies%2FRetoohs-Ecaps","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cliftondavies%2FRetoohs-Ecaps/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cliftondavies%2FRetoohs-Ecaps/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cliftondavies%2FRetoohs-Ecaps/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cliftondavies","download_url":"https://codeload.github.com/cliftondavies/Retoohs-Ecaps/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241389166,"owners_count":19955107,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["fetch-api","html5","javascript","leaderboard-api","netlify","npm","phaser3","webpack"],"created_at":"2024-11-13T01:38:26.484Z","updated_at":"2025-12-31T01:06:05.693Z","avatar_url":"https://github.com/cliftondavies.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![MIT license](https://img.shields.io/badge/License-MIT-blue.svg)](https://lbesson.mit-license.org/)\n[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)\n[![Open Source Love png1](https://badges.frapsoft.com/os/v1/open-source.png?v=103)](https://github.com/ellerbrock/open-source-badges/)\n![Tweeting](https://img.shields.io/twitter/url/http/shields.io.svg?style=social)\n\n# Retoohs-Ecaps\n\n## Background\n\nIt's the year 3000! The planet **Retoohs Ecaps** is under attack from the **Envoy**, an alien race seeking to colonise your galaxy. You're the last remaining Starship. Can you prevent an all out invasion?\n\n## Aim of the game\n\nAttain a top 10 score to save your planet! **Your score** will be only be displayed on the leaderboard if it falls within the top ten warlord scores.\n\n## Scenes\n\nThe game is split into five scenes:\n\n- a Boot scene for initial startup\n- a Preload scene for loading game assets\n- a Title or start game scene\n- a Game scene where the action takes place\n- and a Leaderboard scene for displaying the top 10 scores\n\n## MVP Features\n\n- Start Game\n- Move player in all four directions horizontally and vertically\n- Spawn enemies\n- Enemy lasers\n- Player lasers\n- Destroy enemy ships\n- End game for player\n- Score system\n\n## Nice-to-haves for future implementation\n\n- Ship explosion animation on impact with lasers\n- Game sounds and music\n- Additional scenes for Settings, Credits, etc\n- Mobile compatible version\n\n## Controls\n\n- `SPACE` = PLAYER LASER\n- `LEFT ARROW` = MOVE LEFT\n- `RIGHT ARROW` = MOVE RIGHT\n- `UP ARROW` = MOVE UP\n- `DOWN ARROW` = MOVE DOWN\n\n![screenshot](retoohs.png)\n\n## :tv: Media\n\n[Live Demo Link](https://retoohs-ecaps.netlify.app/)\n\n## :toolbox: Tools \u0026 Technologies Used\n\n### Built with\n\n- HTML5\n- JavaScript ES6\n- [Phaser](https://phaser.io/)\n- Fetch API\n- Leaderboard API\n- webpack 5\n\n### Tested with\n\n- Jest v26.6\n\n## :rocket: Getting Started\n\nTo get a local copy up and running follow these simple example steps.\n\n### Prerequisites\n\nInstall [Node.js with npm](https://nodejs.org/en/download/)\n\nInstall [webpack](https://webpack.js.org/guides/getting-started/)\n\n### Set up\n\nClone repo into your local environment:\n\nClone with SSH\n\n```git\ngit clone git@github.com:cliftondavies/Retoohs-Ecaps.git\n```\n\nClone with HTTPS\n\n```git\ngit clone https://github.com/cliftondavies/Retoohs-Ecaps.git\n```\n\nOpen project directory\n\n```bash\ncd [your-directory-name]\n```\n\nInstall packages:\n\n```javascript\nnpm install\n```\n\n### Local Usage\n\n#### In console\n\nStart server:\n\n```javascript\nnpm run start:dev\n```\n\nRun tests:\n\n```javascript\nnpm test\n```\n\n#### In Browser\n\nVisit `http://localhost:8080/`.\n\n## Author\n\n👤 **Clifton Davies**\n\n- Github: [@githubhandle](https://github.com/cliftondavies)\n- Twitter: [@twitterhandle](https://twitter.com/cliftonaedavies)\n- Linkedin: [linkedin](https://www.linkedin.com/in/clifton-davies-mbcs/)\n\n## 🤝 Contributing\n\nContributions, issues and feature requests are welcome!\n\n## Show your support\n\nGive a ⭐️ if you like this project!\n\n## Acknowledgements\n\n- [CruzR](https://opengameart.org/content/space-starter-kit)\n\n## 📝 Copyright \u0026 License\n\nCopyright (c) 2020 Clifton Davies.\nThis project is licensed under [MIT](https://opensource.org/licenses/MIT). See LICENSE file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcliftondavies%2Fretoohs-ecaps","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcliftondavies%2Fretoohs-ecaps","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcliftondavies%2Fretoohs-ecaps/lists"}