List view
Beta implementation delivers a complete playable game with: - Frontend built with React for interactive gameplay - Improved randomness - Revenue distribution system - Dynamic path length scaling based on prize pool size - Full card system with all card types and effects - Comprehensive social feed with all notification types - Dynamic cipher pricing that scales with prize pool growth
No due date•13/13 issues closedAlpha implementation is a simple game with: - no frontend, using only tests to interact with the game deterministically - pseudo random number generator instead of an VRF - no revenue distribution, the whole collected amount goes to the prize pool - fixed path length of 20 blocks - only 1 card: "the oracle" - simplified social feed: - when a new player joins - when someone wins the run - result of card usage - social feed is obtained only on request ## Gameplay The game starts when the first player purchases ciphers to start a run. Other players can join the run by purchasing ciphers. A pseudo-random path is generated for each player where each of the 20 blocks has a pre-determined correct choice (left or right). Information is available about the players position (block number), length of the path, the prize pool, type and amount of cards collected, and amount of ciphers owned. It's possible to buy more ciphers at any time. The player starts at block 0 with one starting card. When a player uses a card, one cipher is consumed and the player receives a message on the social feed. When a player makes a move, one cipher is consumed and the game checks if the choice is correct: - If correct, the player moves to the next block and receives a card. - If incorrect, the player returns to block 0, loses all collected cards and is given one starting card. The player who first gets to the end of the path wins the run and ends the game. When the game ends: - the prize pool is distributed to the winner - the game state is reset: - cleaning ciphers, - cleaning the paths, - cleaning the cards.
No due date•12/12 issues closed