Tsubasa onchain game running on Starknet Appchain.
Tsubasa is a football game based on the popular manga series of the same name. It's a simulation based on the rules of the game, but with a twist: the players are able to use superhuman techniques, such as the Tiger Shot, to make the game more exciting.
The game leverages the Dojo Engine, a provable game engine and toolchain for building onchain games and autonomous worlds with Cairo.
It can run on the public Starknet, or on a Starknet Appchain using Madara.
- Each player has a deck that he prepared before the game
- Each deck is composed of 8 cards
- There are 24 cards available in the game (for now).
- A game is composed of multiple rounds
- The first player to win 2 rounds wins the game
- To win a round a player has to score a goal
- Each player can place 4 cards at most on the field
- When you place a card on the board it'll wait on side until your next turn to enter the field
- To place a card you'll need to spend the amount of energy specified on it
- The energy level is reset and increased at each turn
- You can place multiple cards on the board during 1 turn
- Each card has 2 statistics dribble/defense
- If you place your card in its real role it will have +1 in dribble and in defense
- The defense is the ability to counter a dribble. If a card A (6 dribble, 3 defense) attacks a card B (2 dribble, 4 defense). The card A will dribble B for sure because 6 >= 4 and will go out of the game. A will stay in the game because 3 >= 2 but A’s defense will be decremented to 1.
- You can define your team captain while creating your deck. Your team captain will have +1 in dribble and defense.
- When the adversary board is empty, your cards will score a goal and you'll win the round
- If both players don't have cards anymore the round is a draw
- The number of rounds played to finish a game is unlimited
Onchain part of the game is located in onchain
directory.
It's a set of Starknet smart contracts written in Cairo.
The project is using dojo. If you are not familiar with it, please read the Dojo book.
You absolutely need to install the dojo toolchain if you want to do anything related to smart contracts.
curl -L https://install.dojoengine.org | bash
dojoup
For a more detailed onboarding please read the installation guide
Within contracts
directory run:
sozo test
You should see something like this:
Updating git repository https://github.com/dojoengine/dojo
running 2 tests
test tsubasa::card::tests::test_move ... ok
test tsubasa::game::tests::test_move ... ok
test result: ok. 2 passed; 0 failed; 0 ignored; 0 filtered out;
Within game-app
directory run:
npm i
npm run dev
You should see something like this:
> game-app@0.1.0 dev
> next dev
- ready started server on 0.0.0.0:3000, url: http://localhost:3000
- event compiled client and server successfully in 79 ms (20 modules)
- wait compiling...
- event compiled client and server successfully in 87 ms (20 modules)
We're always looking for passionate developers to join our community and contribute to Tsubasa. Check out our contributing guide for more information on how to get started.
This project is licensed under the MIT license.
See LICENSE for more information.
Happy coding! 🎉
Thanks goes to these wonderful people (emoji key):
This project follows the all-contributors specification. Contributions of any kind welcome!