scrapple-lib
v0.1.2
Published
A library for a game that resembles Scrabble, but totally isn't
Downloads
7
Readme
About The Project
Built With
Getting Started
To get a local copy up and running follow these simple example steps.
Installation
Clone the repo
git clone https://github.com/LionelKarlen/Scrapple-Lib.git
Install packages
yarn
Run linter to ensure everything is set up
yarn lint
Usage
Example usage to run a game of Scrapple.
const s: Scrapple = new Scrapple(2, 'en'); // Initialise new game
// Check fields
console.log(s.board);
console.log(s.bag);
console.log(s.players);
console.log(s.bag.length);
// Define a move
const move: Move = {
movePieces: [
{
index: 0,
piece: s.players[0].bench[0],
toCoordinate: {
x: 7,
y: 7,
index: 112,
},
},
],
player: s.players[0],
};
// Make the move
s.makeMove(move);
For more examples and full explanations, please refer to the Documentation
Roadmap
See the open issues for a full list of proposed features (and known issues).
Contributing
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'feat: Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
License
Distributed under the MIT License. See LICENSE.txt for more information.
Acknowledgments
This project is designed entirely for educational use. I have no association to the Scrabble name, connected brands, nor do I profit from this project. No copyright infringement is intended. If you represent any copyright holders of the affected parties, please contact me so that we can work out how to continue.