├── LICENSE ├── README.md ├── images ├── esc.png ├── favicon.png ├── screenshot.png └── thumb.jpg ├── index.html ├── js ├── create.js ├── main.js └── words.js ├── netlify.toml ├── sounds ├── pluck.mp3 └── pluck.ogg └── style.css /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License 2 | 3 | Copyright (c) 2019, Kailash Nadh. https://github.com/knadh 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # word pluck 2 | A browser based typing game. Dusted out from a project from 2012. Uses CreateJS (an ancient version) to render game elements. 3 | 4 | [](https://wordpluck.netlify.com) 5 | 6 | 7 | ## Demo 8 | [Play word pluck online](https://wordpluck.netlify.com) 9 | 10 | Licensed under the MIT license. 11 | -------------------------------------------------------------------------------- /images/esc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knadh/wordpluck/3fc5e18ccd2aeb982cfb5d91eef2ac7f8f4a7aca/images/esc.png -------------------------------------------------------------------------------- /images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knadh/wordpluck/3fc5e18ccd2aeb982cfb5d91eef2ac7f8f4a7aca/images/favicon.png -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knadh/wordpluck/3fc5e18ccd2aeb982cfb5d91eef2ac7f8f4a7aca/images/screenshot.png -------------------------------------------------------------------------------- /images/thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knadh/wordpluck/3fc5e18ccd2aeb982cfb5d91eef2ac7f8f4a7aca/images/thumb.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |Pause / Un-pause the game by pressing the Space key.
40 |Enable Tips, to get a peek of the upcoming word (reduces scores slightly).
41 |Turn your speakers down a little! You can turn the sound on / off using the checkbox on the right.
42 |44 | 45 |
46 |